function twitterCallback2(tweets) {
	$("#twitter-list").each(function($) {
		var c, d, e, f;
		var months = [ "Jan ", "Feb ", "Mar ", "Apr ", "May ", "Jun ", "Jul ", "Aug ", "Sep ", "Oct ", "Nov ", "Dec " ];
		for (var a = 0; a < tweets.length; a++) {
			dateString = tweets[a].created_at.split(" ");
			//c = new Date(tweets[a].created_at);
			c = new Date(dateString[0] + " " + dateString[1] + " " + dateString[2] + " " + dateString[3] + " " + dateString[5] + " " + dateString[4]);
			f = e = c.getHours();
			e = (e >= 12 ? e - 12 : e);
			d = (e + ":" + c.getMinutes() + (f >= 12 ? "PM" : "AM") + ", " + months[c.getMonth()] + c.getDate());
			this.innerHTML += "<dt>" + tweets[a].text + "</dt><dd>By <a href=\"http://twitter.com/" + tweets[a].user.name + "\" target=\"_blank\">" + tweets[a].user.name + "</a> at " + d + "</dd>\n";
		}
	});
};