function la_Tweet(){
	$.getJSON('http://twitter.com/status/user_timeline/mjacobandsons.json?count=5&callback=?', function(json){
		json = eval(json);
		var i = 0;
		var imageUrl = "";
		var user = "";
		var tweet = "";
		var idForURL = "";
		if(json.length < 1){
			la_Tweet();
		}
		for(i; i < json.length; i++){
			if(!json[i].in_reply_to_screen_name){
				user = json[i].user.screen_name;
				tweet = json[i].text.replace(/((https?|s?ftp|ssh)\:\/\/[^"\s\<\>]*[^.,;'">\:\s\<\>\)\]\!])/g,function(F){return'<a class="smallYellowLink" href="'+F+'" target="_blank">'+F+"</a>"}).replace(/\B@([_a-z0-9]+)/ig,function(F){return '<a class="smallYellowLink" href="http://www.twitter.com/'+F+'" target="_blank">'+F+"</a>"});
				idForURL = json[i].id;
				$("#tweetTweet").append('<table width="242" cellpadding="0" cellspacing="0" style="margin:5px 0 10px 0;"><tr><td width="10"></td><td align="left" valign="top"><p style="color:#fff;" style="margin-top:0;"><a href="http://twitter.com/'+user+'" style="color:#fff;" title="Read our Tweets" target="_blank">@'+user+':</a> '+tweet+' - <a href="http://twitter.com/'+user+'/statuses/'+idForURL+'" style="color:#fff;" title="Read our Tweets" target="_blank">read it on twitter</a></p></td><td width="10"></td></tr></table>');
				
				break;
				
			}
		}
		
	});			
}

$(function(){
	la_Tweet();
});
