// JavaScript Document
/* Slideshow de las imagenes de los alojamientos*/
$(document).ready(function() {
    $('div.carrusel').cycle({
		fx: 'fade',
		speed:    1000, 
    	timeout:  1500
	});
 
	$("div.carrusel").cycle('pause');
 
	$("div.carrusel").mouseover(function(){
      $(this).cycle('resume');
    }).mouseout(function(){
      $(this).cycle('pause');
    });
 
});

