/*
$(document).ready(function(){
	getlatest();
	});
	function getlatest() {
	
	$.ajax({
		type: "GET",
		url: "latest-tweet.php",
		cache: false,
		success: function(html){
				$("#tuit").prepend(html);
				$(".tuit").slideDown("100");
			}
	});
	
	 setTimeout("getlatest();", 30000);
	}
*/