function twitterCallback2(o) {
	o = o[0]; // o is always an array, so just get the first (and only entry)
	var e = document.getElementById('twitterpost');
	e.innerHTML = o.text;
}

//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>';
//    });
//    statusHTML.push(status);
//  }
//  document.getElementById('twitpoon').innerHTML = statusHTML.join('');
//}