$(document).ready(function() {
	$.ajax({
		url: Settings.baseUrl + 'tweets/recent',
		success:function ($data, $textStatus, $jqXHR) {
			
			try {
				// set "time ago"
				var _timeAgo = jQuery.timeago($data[0].created_at);
				
				$('article.twitterBox').html('<p>' + $data[0].text + '</p><span class="time">' + _timeAgo  + '</span>');	
				
				$('article.twitterBox').click(function (){
					window.open('http://twitter.com/' + $data[0].user.screen_name, '_blank');
				});
			}
			catch ($e) 
			{
				$('article.twitterBox').html('...');
				console.log($e).message;
			}
		}
		
	});
	
});

