// JavaScript Document
<!--
myPix = new Array("Images/History/1.jpg ",
"Images/History/10.jpg ",
"Images/History/11.jpg ",
"Images/History/12.jpg ",
"Images/History/13.jpg ",
"Images/History/14.jpg ",
"Images/History/15.jpg ",
"Images/History/16.jpg ",
"Images/History/17.jpg ",
"Images/History/18.jpg ",
"Images/History/19.jpg ",
"Images/History/2.jpg ",
"Images/History/3.jpg ",
"Images/History/4.jpg ",
"Images/History/5.jpg ",
"Images/History/6.jpg ",
"Images/History/7.jpg ",
"Images/History/8.jpg ",
"Images/History/9.jpg ",
"Images/History/Ancient forest.jpg ")
		thisPic = 0
imgCt = myPix.length-1

function chgSlide(direction) {
		if (document.images){
			thisPic = thisPic + direction
			if (thisPic > imgCt) {
				thisPic = 0
			}
			if (thisPic < 0) {
				thisPic = imgCt
			}
			document.Picture.src=myPix[thisPic]
		}
}

//-->

