$.getJSON("http://twitter.com/statuses/user_timeline.json?screen_name=elsondesigns&count=20&callback=?",

function(data)
{
	$("#tweets").html('<h2><a href="http://twitter.com/#!/elsondesigns">Elson Designs Tweets </a></h2>');
	$.each(data, function(i,item)
	{
		ct = item.text;
		ct = ct.replace(/http:\/\/\S+/g,  '<a href="$&" target="_blank">$&</a>');
		ct = ct.replace(/\s(@)(\w+)/g,    ' @<a href="http://twitter.com/$2" target="_blank">$2</a>');
		ct = ct.replace(/\s(#)(\w+)/g,    ' #<a href="http://search.twitter.com/search?q=%23$2" target="_blank">$2</a>');
		
		$("#tweets").append('<div class="tweet">'+ct +"</div>");
	});
});
