/*--------------------------------------------------------------------------------------*/
/*											*/
/* scriptfile208.js 		scripts for picture viewer				*/
/*				G.W.Johnson 2008					*/
/*											*/
/*											*/
/*--------------------------------------------------------------------------------------*/

/* load captions */

	captionTxt = new Array(
		"Welcome to Ferintosh",
		"Located on Little Beaver Lake",
		"Visit the Ferintosh General Store",
		"Watch the Birds at Little Beaver Lake",
		"Main Street Playground",
		"Sit and Relax by the Lake",
		"The Little Beaver Hi-U Seniors Centre",
		"Wetlands South of the Lake"
		 )


/* preload image files 									*/

	if (document.images) {

		photo01 = new Image
		photo02 = new Image
		photo03 = new Image
		photo04 = new Image
		photo05 = new Image
		photo06 = new Image
		photo07 = new Image
		photo08 = new Image

		photo01.src = "photo/photo01.jpg"
		photo02.src = "photo/photo02.jpg"
		photo03.src = "photo/photo03.jpg"
		photo04.src = "photo/photo04.jpg"
		photo05.src = "photo/photo05.jpg"
		photo06.src = "photo/photo06.jpg"
		photo07.src = "photo/photo07.jpg"
		photo08.src = "photo/photo08.jpg"

		}


/* image changing function for rollovers 						*/
	
	function chgImg(imgField,newImg) {
		if (document.images) {
			document[imgField].src= eval(newImg + ".src")
		}
	}

	function chgTxt(txtIndex) {
		document.txtForm.txtField.value=captionTxt[txtIndex]
	}



/*------------------------------------- end of file -------------------------------------*/	