var pause=false;
$(function(){
	
<!--	$("#anuncios").click(function(){ -->
<!--			self.location='/index2.php'; -->
<!--		}); -->
	
	$('#anuncios').cycle({
		speed: 900,
		timeout: 6000,
		next: '#nextBanner',
		prev: '#prevBanner'
	});
	$("#pauseBanner").toggle(
		function(){
			pause=true;
			$(this).addClass("vermelho");
			$('#anuncios').cycle('pause');
		},
		function(){
			pause=false;
			$(this).removeClass("vermelho");
			$('#anuncios').cycle('resume');
		}
	);
});