//This displays the most recent tweet on the top of the page:
function twitterCallback2(twitters) {
  var statusHTML = [];
  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>';
    });
    if(status.length > 94){ status = status.substring(0,94)+'...'; }
    statusHTML.push('<a href="http://twitter.com/'+username+'/statuses/'+twitters[i].id_str+'">'+status+'</a>');
  }
  document.getElementById('twitter_status').innerHTML = statusHTML.join('');
}
