$(document).ready(function(){
	if ($('#tweets').length == 1) {
		$('#tweets').load('/includes/wrappers/twitter.html', function(){
			var lastTweetId = $('#tweets').find('.tweet-id').text();
			$.ajax({
				url: "/includes/wrappers/twitter.php",
				global: false,
				type: "POST",
				data: {id : lastTweetId},
				dataType: "html",
				success: function(msg){
					
				}
			});
		});
	}
});