function twitterCallback2(twitters) {
  var statusHTML = [];
  statusHTML.push('<ul id="twitterfeed">');
  for (var i=0; i<twitters.length; i++){
    var username = twitters[i].user.screen_name;
    var status = twitters[i].text.replace(/((https?|s?ftp|ssh)\:\/\/[^"\s\<\>]*[^.,;'">\:\s\<\>\)\]\!])/g, function(url) {
      return '<a href="'+url+'">'+url+'</a>';
    }).replace(/\B@([_a-z0-9]+)/ig, function(reply) {
      return  reply.charAt(0)+'<a href="http://twitter.com/'+reply.substring(1)+'">'+reply.substring(1)+'</a>';
    });
	
	var time_value = twitters[i].created_at;
	var values = time_value.split(" ");
	var timevalues = values[3].split(":");
	var niceday = "";
	if (values[0] == "Mon") { var niceday = "Monday"; }
	else if (values[0] == "Tue") { var niceday = "Tuesday"; }
	else if (values[0] == "Wed") { var niceday = "Wednesday"; }
	else if (values[0] == "Thu") { var niceday = "Thursday"; }
	else if (values[0] == "Fri") { var niceday = "Friday"; }
	else if (values[0] == "Sat") { var niceday = "Saturday"; }
	else if (values[0] == "Sun") { var niceday = "Sunday"; }
	
	if (values[1] == "Jan") { var nicemonth = "January"; }
	else if (values[1] == "Feb") { var nicemonth = "February"; }
	else if (values[1] == "Mar") { var nicemonth = "March"; }
	else if (values[1] == "Apr") { var nicemonth = "April"; }
	else if (values[1] == "May") { var nicemonth = "May"; }
	else if (values[1] == "Jun") { var nicemonth = "June"; }
	else if (values[1] == "Jul") { var nicemonth = "July"; }
	else if (values[1] == "Aug") { var nicemonth = "August"; }
	else if (values[1] == "Sep") { var nicemonth = "September"; }
	else if (values[1] == "Oct") { var nicemonth = "October"; }
	else if (values[1] == "Nov") { var nicemonth = "November"; }
	else if (values[1] == "Dec") { var nicemonth = "December"; }
	
statusHTML.push('<li><div class="blog-latest twitter-latest"><h4><a href="http://twitter.com/'+username+'/statuses/'+twitters[i].id_str+'" title="Tweet">'+niceday+' '+nicemonth+' '+values[2]+'</a></h4><p>'+status+'</p></div></li>');
		
  }
  statusHTML.push('</ul>');
  document.getElementById('twitter_update_list').innerHTML = statusHTML.join('');
}
