function twitterCallback3(obj) {
		var twitters = obj;
		var statusHTML = '';
		var username = '';
		var month=new Array(12);
		month[0]="January";
		month[1]="February";
		month[2]="March";
		month[3]="April";
		month[4]="May";
		month[5]="June";
		month[6]="July";	
		month[7]="August";
		month[8]="September";
		month[9]="October";
		month[10]="November";
		month[11]="December";
		
		for (var i=0; i<twitters.length; i++){
			username = twitters[i].user.screen_name
			date = new Date(twitters[i].created_at);
			function urlReplace(str){return '<a href='+str+' target=_blank>Click here</a>';}
			text = twitters[i].text.replace(/\./g, ".");
			text = text.replace((/http:.*/), urlReplace); 
			statusHTML += ('\"'+text+'\"<br><span style=\"font-size:10px;\">'+month[date.getMonth()]+' '+date.getDate()+' '+date.getFullYear()+'</span>')
		}
		document.getElementById('twitter_update_list').innerHTML = statusHTML;
}

/*

twitterCallback3([{
"favorited":false,
"in_reply_to_user_id":null,
"in_reply_to_screen_name":null,
"source":"<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">HootSuite</a>",
"created_at":"Wed Sep 16 18:38:07 +0000 2009",
"user":{"profile_text_color":"000000",
	"description":null,
	"profile_background_image_url":"http://s.twimg.com/a/1253743961/images/themes/theme1/bg.png",
	"url":null,
	"following":null,
	"profile_link_color":"0000ff",
	"profile_background_tile":false,
	"profile_image_url":"http://a1.twimg.com/profile_images/61073160/Watershed-logo_sq_normal.jpg",
	"created_at":"Wed Oct 01 15:07:13 +0000 2008",
	"profile_background_color":"9ae4e8",
	"followers_count":17,"time_zone":null,
	"screen_name":"watershed_nw",
	"profile_sidebar_fill_color":"e0ff92",
	"favourites_count":0,"protected":false,
	"verified":false,"notifications":null,
	"profile_sidebar_border_color":"87bc44",
	"location":null,
	"name":"watershed_nw",
	"statuses_count":20,
	"friends_count":44,
	"id":16544887,
	"utc_offset":null
},
"truncated":false,
"id":4035183542,
"in_reply_to_status_id":null,
"text":"For those of us in the communications industry, now is a moment of opportunity. http://ow.ly/pFRq"}]);
*/
