jQuery(document).ready(function(){
  var tweeturl = "http://twitter.com/status/user_timeline/powershop.json?count=3&callback=?";
  jQuery.getJSON(tweeturl, function(data){
    jQuery.each(data, function(i, item) {
      var txt = item.text
	      .replace(/(https?:\/\/[-a-z0-9._~:\/?#@!$&\'()*+,;=%]+)/ig,'<a href="$1">$1</a>')
	      .replace(/@+([_A-Za-z0-9-]+)/ig, '<a href="http://twitter.com/$1">@$1</a>')
	      .replace(/#+([_A-Za-z0-9-]+)/ig, '<a href="http://search.twitter.com/search?q=$1">#$1</a>');
	    jQuery('<p></p>').addClass(i%2 ? 'even' : 'odd').html(txt).appendTo('#tweets');
	  });
  });
});
