// preload photos

windsor1 = new Image(350,262);
windsor1.src = "img/windsor1.jpg";

windsor2 = new Image(350,262);
windsor2.src = "img/windsor2.jpg";

home2 = new Image(350,262);
home2.src = "img/home2.jpg"

home3 = new Image(350,262);
home3.src = "img/home3.jpg"

home4 = new Image(350,262);
home4.src = "img/home4.jpg"

home5 = new Image(350,262);
home5.src = "img/home5.jpg"

windsor3 = new Image(350,262);
windsor3.src = "img/windsor3.jpg";

windsor4 = new Image(350,262);
windsor4.src = "img/windsor4.jpg";

windsor9 = new Image(350,262);
windsor9.src = "img/windsor9.jpg";

// SCRIPT FOR ARROW BUTTONS

	var changePhotos = new Array ("img/windsor1.jpg","img/windsor2.jpg","img/home2.jpg","img/home3.jpg","img/home4.jpg","img/home5.jpg","img/windsor3.jpg","img/windsor4.jpg","img/windsor9.jpg");

	var changeText = new Array ("Welcome to the Windsor Hills Clubhouse in Kissimmee, Florida.<br>Enjoy your stay!",
	
	"This is the pool's waterslide.",
	
	"The living room of condo #1 equipped with a cable LCD TV, Xbox and games, DVD player, family board games, and much more! ",
	
	"Mickey Mouse Bedroom of Condo #2. Equipped with a talking Mickey Mouse lamp, Disney TV, games console, and DVD player with movies to keep the kids busy!",
	
	"Amazing dining and living room of condo #4. This room includes a cable 32 inch HD LCD TV, DVD player, board games, and a whole lot more!",
	
	"Living room of condo #3 features a 32 inch LCD HDTV with cable, DVD player, and a DVD collection. Plus there is a 5.1 surround sound system, Sony playstation 2, games collection, and board games!",
	
	"The enchanting castle playground!",
	
	"Test your skills on this giant chess set.",
	
	"Soak up the Florida sun by the pool.");

	var numberOfPhotos = changePhotos.length;
	var thisCount = 0;
	
function slideshowNext() {

	thisCount ++;
	if (thisCount == numberOfPhotos) {
		thisCount = 0;
	}
	document.getElementById('thisPhoto').src = changePhotos[thisCount];
	document.getElementById('caption').innerHTML = changeText[thisCount];
}

function slideshowBack() {

	thisCount --;
	if (thisCount < 0) {
		thisCount = 8;
	}
	document.getElementById('thisPhoto').src = changePhotos[thisCount];
	document.getElementById('caption').innerHTML = changeText[thisCount];
}

// Randomize main photo with text

myPhotos = new Array("img/windsor1.jpg","img/home2.jpg","img/home3.jpg","img/home4.jpg","img/home5.jpg","img/windsor9.jpg");
myCaptions = new Array("Welcome to the Windsor Hills Clubhouse in Kissimmee, Florida.<br>Enjoy your stay!",

	"The living room of condo #1 equipped with a cable LCD TV, Xbox and games, DVD player, family board games, and much more! ",
	
	"Mickey Mouse Bedroom of Condo #2. Equipped with a talking Mickey Mouse lamp, Disney TV, games console, and DVD player with movies to 	keep the kids busy!",
	
	"Amazing dining and living room of condo #4. This room includes a cable 32 inch HD LCD TV, DVD player, board games, and a whole lot more!",
	
	"Living room of condo #3 features a 32 inch LCD HDTV with cable, DVD player, and a DVD collection. Plus there is a 5.1 surround sound system, Sony playstation 2, games collection, and board games!",

	"Soak up the Florida sun by the pool.");

var numberOfPhotos2 = myPhotos.length

function choosePhoto() {
	var randomNum = Math.floor((Math.random() * numberOfPhotos2));
	document.getElementById('thisPhoto').src = myPhotos[randomNum];
	document.getElementById('caption').innerHTML = myCaptions[randomNum];
}