$(document).ready(function() {

    $('.image-slideshow').cycle({
	
		fx      : 'fade',
		timeout : 7500,
		speed   : 1500
		
	});

    $('.room-slideshow1').cycle({
	
		fx      : 'fade',
		timeout : 7500,
		speed   : 1500,
		next    : '#next-slide1'
		
	});

    $('.room-slideshow2').cycle({
	
		fx      : 'fade',
		timeout : 7500,
		speed   : 1500,
		next    : '#next-slide2'
		
	});

    $('.room-slideshow3').cycle({
	
		fx      : 'fade',
		timeout : 7500,
		speed   : 1500,
		next    : '#next-slide3'
		
	});
	
});