$(document).ready(function() {
	$(".facebox-active").facebox();
	
	$("#opaco").css("opacity","0.7");
	
	$(document).bind("beforeReveal.facebox", function(){
		$("#banners_div").hide();
	})
	$(document).bind("close.facebox", function(){
		$("#banners_div").show();
	});
	
	$("#banner-inicio").click();
	
	// TIKER BANNER INDEX
	$('#banners_div').cycle({ 
	    fx:			'all', 
		speed:		1000, 
	    timeout:	5000, 
		sync:		true, 
		easing:		'easeInBack', 
		pauseOnPagerHover: true
	});
  
});

