$(document).ready(function() {

	$('#homeSlideshow1').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	$('#homeSlideshow2').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	$('#homeSlideshow3').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	$('#lowerSlideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	$('#islandHouse').click(function(){
		window.location.href = "/island-house/"
	});
	
	$('#lilyHouse').click(function(){
		window.location.href = "/lily-house/"
	});
	
	$('#islandCottage').click(function(){
		window.location.href = "/island-cottage/"
	});
  
});


 

