// preload photos

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

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

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

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

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

// SCRIPT FOR ARROW BUTTONS

	var changePhotos = new Array ("img/home5.jpg","img/condo3b.jpg","img/condo3c.jpg","img/condo3d.jpg","img/condo3e.jpg");

	var changeText = new Array ("The living room features a 32 inch LCD HDTV with cable, DVD player, DVD collection, 5.1 surround sound system, Sony playstation 2 plus a games collection and board games!",
	
	"All three bedrooms have LCD HDTV's for you to watch while in bed. The master bedroom also has a walk in closet and ensuite. ",
	
	"Second bedroom.",
	
	"The third bedroom has been furnished for kids. It has two twin beds, a Disney DVD player, and a talking Mickey Mouse lamp.",
	
	"The kitchen in condo # 3 is fully equipped with a dishwasher, microwave, etc. It has an upgraded cooker with an easy to clean glass top and an extra large, upgraded fridge with cold water and an ice dispenser. There is also a CD player/radio for you to enjoy.");

	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 = 4;
	}
	document.getElementById('thisPhoto').src = changePhotos[thisCount];
	document.getElementById('caption').innerHTML = changeText[thisCount];
}

