$(document).ready(function(){
	$(".tweeti").hover(function(){
		$(".tweet").fadeIn("slow");
	},function(){
		setTimeout(function(){ $(".tweet").fadeOut("slow"); }, 3000);		
	});
});
