function twitterCallback2(twitters) {
  var statusHTML = [];
  var path = window.location.pathname;
  var fileName = path.substring(path.lastIndexOf('/') + 1).toLowerCase();  
  
  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('<div class="inner">'+status+'</div>');
    
    if(fileName != 'index.html'){
	    if(i % 2 == 0){
	    	statusHTML.push('<div class="even"></div>');
	    }  else {
	    	statusHTML.push('<div class="odd"></div>');
	    }
    }
  }
   
  if(fileName == 'index.html'){
	  statusHTML.push('<div class="footsingle"><a href="http://www.twitter.com/clippergreentea" target="_blank"><span>twitter.com/clippergreentea</span></a></div>');
  } else {
	  statusHTML.push('<div class="foot"><a href="http://www.twitter.com/clippergreentea" target="_blank"><span>twitter.com/clippergreentea</span></a></div>');
  }
  
  $('.loading').fadeOut(750, function() {
	    $('#tweetbox').append($(statusHTML.join('')).hide().fadeIn(750));
	}); 
}
