// JavaScript Document

	var photoCount = 9; <!-- This is the total number of photos. Change this number accordingly. -->

	photocaption = new Array;
	// The captions below may be altered to match the corresonding images.
	// You may add or remove captions, but don't change the format.
	
// begin photos
	photocaption[1] = " "
	photocaption[2] = " "
	photocaption[3] = " "
	photocaption[4] = " "
	photocaption[5] = " "
	photocaption[6] = " "
	photocaption[7] = " "
	photocaption[8] = " "
	photocaption[9] = " "


	/////////////////////////////////////
	
	var tPath = "images/banner/";
	var randomPick = (Math.round(Math.random() * (photoCount - 1)) + 1);
	//  You shouldn't need to alter these numbers, but FYI, the second number
	//  is the lowest acceptable integer in the range of random integers.
	// 'photoCount' is the highest integer in the range, and the total number of photos.

	var tPhoto = tPath + "photo_" + randomPick + ".gif";
	//var tCaption = tPath + "caption_" + randomPick + ".gif";
	
	
	function getAltText(whichNum) {
		return(photocaption[whichNum]);
	}

// Thanks to Craig Spooner for letting me alter his code.