/* Get my tweets by @CaMorales c'mon and learn */
$.getJSON('http://twitter.com/statuses/user_timeline/CaMorales.json?count=1&callback=?', function(data){
	$.each(data, function(i, item){
		$('#twitter .tweet').html(item.text);
	});
});
