myPix = new Array("imgs/photos/worship/simchatTorah/simchatTorah1.jpg", "imgs/photos/worship/simchatTorah/simchatTorah2.jpg", "imgs/photos/worship/simchatTorah/simchatTorah3.jpg", "imgs/photos/worship/simchatTorah/simchatTorah4.jpg", "imgs/photos/worship/simchatTorah/simchatTorah5.jpg", "imgs/photos/worship/simchatTorah/simchatTorah6.jpg",	"imgs/photos/worship/simchatTorah/simchatTorah7.jpg","imgs/photos/worship/simchatTorah/simchatTorah8.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.myPicture3.src=myPix[thisPic]		}	}