$(document).ready(function(){
	
	//CARRUSEL IMAGEN GRANDE
   $('.destacadosss_grandesss').cycle({ 
         fx: 'fade', 
         speed:	950,  
         timeout:  15000  
     });
   
   	//CARRUSEL IMAGEN PEQUEÑA
	

   $('#nove_uno').cycle({ 
         fx: 'fade', 
         speed:	950,  
         timeout:  5000,
		 delay:  500
     });
 

   $('#nove_dos').cycle({ 
         fx: 'fade', 
         speed:	950,  
         timeout:  5000,
		delay:  1000
		
     }); 

   $('#nove_tres').cycle({ 
         fx: 'fade', 
         speed:	950,  
         timeout:  5000,
		 delay:  1500
	});
 
   
   //movida texto en la foto
   $(function() {
			$('.imagen_principal').hover(function(){
				$(this).find('.info_libro_home').slideDown();
			}, function(){
				$(this).find('.info_libro_home').slideUp();
			});
		});
   
   //FORM NEWSLETTER
   $('.boton_newsletter').toggle(function() {
  $('.formulario').fadeIn();
}, function() {
  $('.formulario').fadeOut();
});
   
  

   
});
