$(document).ready(function() {				   
	   var url = "http://twitter.com/statuses/user_timeline/tazachocolate.json?count=1&callback=?"; 
	   $.getJSON(url, 
		function(data){ 
			$.each(data, function(i, item) { 
				$("#twitterContainer p").prepend(item.text.linkText());
			}); 
			var fullText = $("#twitterContainer p").html();
			$("#twitterContainer p").html(fullText.replace(/href/g, 'target="_blank" href'));
			$("#twitterContainer p").fadeIn("normal");
		});
	   
	   String.prototype.linkText = function() {																		 
			return this.replace(/[A-Za-z]+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+/, function(m) {
				return m.link(m);
			});
	   }
});







