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 ('<a href="http://twitter.com/dobermanklub" target="_blank"><img src="/images/followme_right.png" onmouseout="this.src=\'/images/followme_right.png\';" onmouseover="this.src=\'/images/followme_left.png\';" style="border: 0px none #000000" alt="'+status+'" title="'+status+'" /></a>');


  }
  document.getElementById('twitter_update_list2').innerHTML = statusHTML.join('');
}
