// JavaScript Document
myPix = new Array("images/fourth_04.gif",
				  "images/fifth_05.gif",
				  "images/first_01.gif",
				  "images/second_02.gif",
				  "images/third_03.gif")
	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]
		}
	}