myPix = new Array();
myDescriptions = new Array();

myPix[0] = "images/slideshow_1x1_entry.jpg";
myDescriptions[0] = "1 Bedroom Floorplan Entry";

myPix[1] = "images/slideshow_kitchen.gif";
myDescriptions[1] = "Typical Kitchen";

myPix[2] = "images/slideshow_living.gif";
myDescriptions[2] = "Living Room";

myPix[3] = "images/slideshow_bath.jpg";
myDescriptions[3] = "Bath";

myPix[4] = "images/slideshow_r2_studio_kitchen.jpg";
myDescriptions[4] = "Studio B Kitchen";

myPix[5] = "images/slideshow_stu_living.gif";
myDescriptions[5] = "Studio Living Area";

myPix[6] = "images/slideshow_bath2.jpg";
myDescriptions[6] = "Studio Bath";

myPix[7] = "images/slideshow_exterior.jpg";
myDescriptions[7] = "Sidewalk View";

myPix[8] = "images/slideshow_rainier.jpg";
myDescriptions[8] = "View from Building";

thisPic = 0;
imgCt = myPix.length - 1;

function updateDescription() {
	document.getElementById("description").innerHTML = myDescriptions[thisPic];
}

function chgSlide(direction) {
	if (document.getElementById) {
		thisPic = thisPic + direction
		if (thisPic > imgCt) {
			thisPic = 0
		}
		if (thisPic < 0) {
			thisPic = imgCt
		}
		document.getElementById("myPicture").src = myPix[thisPic];
		updateDescription();
	}
}

function chooseSlide(picNum) {
	if (document.getElementById) {
		thisPic = picNum;
		document.getElementById("myPicture").src = myPix[thisPic];
		updateDescription();
	}
}

