(function($){   
$.fn.twitterize_text = function(options){
	var url = "http://twitter.com/status/user_timeline/belgart.json?count=1&callback=?";
	var holder = this;
	$.getJSON(url,function(data){
		$.each(data, function(i, item) {holder.append(item.text.makeLinks());});}
	);
}
String.prototype.makeLinks = function() {
	return this.replace(/[A-Za-z]+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+/, function(str) {return str.link(str);});
};
return this;
})(jQuery);
