$(document).ready(function() {




	$.ajax({
		type: "get",
		url: "http://www.subsplash.com/get_tweet.php",

		success: function (data, text, request) {
			//alert(data);

			$('#tweet').hide();
			$('#tweet').html(data);
			$('#tweet').fadeIn("slow");

		},
		/*
error: function (request, status, error) {
			alert(request.responseText);
		}
*/

	});

	//$('.tweet').html("hello");


});
