//Funciones Generales JQuery

$(document).ready(function(){
	$(".gal_img").fadeTo("normal", 0.6); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	$(".gal_img").hover(function(){
	$(this).fadeTo("normal", 1.0); // This should set the opacity to 100% on hover
	},function(){
	$(this).fadeTo("normal", 0.6); // This should set the opacity back to 30% on mouseout
	});		
	
    $('.producimos_galeria').cycle({// Efecto aplicado al slideshow en Inicio
		fx: 'scrollRight' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
    $('.producimos_galeria2').cycle({// Efecto aplicado al slideshow en Quienes Somos
		fx: 'scrollUp' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
});
