myPix2 = new Array("images/travel/brian02.jpg","images/travel/brian03.jpg","images/travel/brian04.jpg")	thisPic = 0	imgCt = myPix2.length - 1	function chgSlide2(direction) {		if (document.images) {			thisPic = thisPic + direction			if (thisPic > imgCt) {				thisPic = 0			}			if (thisPic < 0) {				thisPic = imgCt			}			document.myPicture2.src=myPix2[thisPic]		}	}
