<!-- Hide code from older browsers
		captionText = new Array(			"1",			"2"		)		thisImg = 0		imgCt = captionText.length				function newSlide() {			if (document.images) {
				var direction = 1;				thisImg = thisImg + direction				if (thisImg < 0) {					thisImg = imgCt-1				}				if (thisImg == imgCt) {					thisImg = 0				}				document.main_pic.src = "images/main/" + thisImg + ".gif"
				document.getElementById('picture_title').innerHTML=thisImg;			}		}		// Stop hiding code -->