exibe = 0;
$(document).ready(function() {
if($(".link_jacotei")){
		$(".link_jacotei").mouseover(function(){
			$(".anuncio_jacotei").show();
			window.setTimeout(function() {
				if(exibe==0) $(".anuncio_jacotei").hide();
			}, 3000);
		});	
		$(".anuncio_jacotei").mouseover(function(){exibe=1;})
		$(".anuncio_jacotei").mouseout(function(){$(".anuncio_jacotei").hide();exibe=0;})
	}
})
