$(function() {
	
    $('.publicidade_img').cycle({
	    fx:     'fade', 
	    speed:   1000, 
	    timeout: 1,  
	    pause:   1 
    });
    
	$('#anuncio1,#anuncio2').cycle();
	
	window.time = 0;
	$('.anuncio').bind('mouseenter',function(){
		if (time) clearTimeout(time);
		$('.descricao_anuncio',this).slideDown();
	}).bind('mouseleave',function(){
		var self = this;
		time = setTimeout(function(){
			$('.descricao_anuncio',self).stop().slideUp();
		},500);
	});
	
	window.time2 = 0;
	$('.anuncio2').bind('mouseenter',function(){
		if (time2) clearTimeout(time2);
		$('.descricao_anuncio',this).slideDown();
	}).bind('mouseleave',function(){
		var self = this;
		time2 = setTimeout(function(){
			$('.descricao_anuncio',self).stop().slideUp();
		},500);
	});	
});