var iLoopControl=0;
jQuery(document).ready(function(){
	jQuery('#last_tweet').html('');
	jQuery.getJSON('http://twitter.com/status/user_timeline/planmysite.json?count=10&callback=?', function(data){
		jQuery.each(data, function(index, item){
			iLoopControl = iLoopControl+1;
			if(iLoopControl<3) 
				jQuery('#last_tweet').append('<p>' + item.text.linkify() + '</p>');
		});
	
	});
	
	String.prototype.linkify = function() {
		return this.replace(/[A-Za-z]+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+/, function(m) {
			return m.link(m);
		});
	};

});
