var twID;
function hae_tweet(){
	$('#tweet').load('/ajax/tweet2.php', function(){
		twID = setTimeout(hae_tweet, 60000);
	});
}
$(document).ready( function(){
	hae_tweet();
});
