myPix = new Array("../images/grant_album/grant01.jpg","../images/grant_album/grant02.jpg", "../images/grant_album/grant03.jpg", "../images/grant_album/grant04.jpg", "../images/grant_album/grant05.jpg", "../images/grant_album/grant06.jpg", "../images/grant_album/grant07.jpg", "../images/grant_album/grant08.jpg", "../images/grant_album/grant09.jpg", "../images/grant_album/grant10.jpg", "../images/grant_album/grant11.jpg", "../images/grant_album/grant12.jpg", "../images/grant_album/grant13.jpg", "../images/grant_album/grant14.jpg", "../images/grant_album/grant15.jpg", "../images/grant_album/grant16.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.myPicture.src=myPix[thisPic]
		}
	}