$(function() {
	//IE対策
	function replaceTwTimeStr(time){
		var tArray = time.split(" ");
		var timeStr = tArray[0] + " " + tArray[1] + " " + tArray[2] + " " + tArray[5] + " " + tArray[3] + " " + tArray[4];
		return timeStr;
	}
	var dateObj = new Date;
　$.getJSON('http://twitter.com/statuses/user_timeline/bikenkan.json?count=5&callback=?', function (json) {
		for(var i in json){
			var text = json[i].text;
			//つぶやきを表示
			$("dl#twitter").append("<dt>" +
				dateObj.format('Y年m月d日', replaceTwTimeStr(json[i].created_at)) +
				"</dt><dd>" + text + "</dd>");
		}
	});
});

