jQuery(document).ready(function() {
	jQuery(".modal_videos").cycle({
		//fx:      "scrollHorz",   
		timeout: 0,
		pager:   ".modal_videos_nav"
	});
	
	jQuery(".botao_videos").click(function(){
		jQuery(".overlay, .container_modal").fadeIn();
	});
	
	jQuery(".botao_fechar").click(function(){
		jQuery(".overlay, .container_modal, .container_modal_texto").fadeOut();
	});
	
	jQuery(".slide0").click(function(){
		jQuery(".modal_videos").cycle(0);
	});
	
	jQuery(".slide1").click(function(){
		jQuery(".modal_videos").cycle(1);
	});
	
	jQuery(".slide2").click(function(){
		jQuery(".modal_videos").cycle(2);
	});
	
	jQuery(".g_produtos").cycle({
		fx:      "scrollHorz",   
		timeout: 0,
	    prev:   '.nav_e', 
	    next:   '.nav_d' 
	});
});
