<!-- Hide script from old browsers

	myPix = new Array("i/sofalifedrawing_fr-01.gif","i/chairlifedrawing_fr-02.gif","i/chairlifedrawing_fr-03.gif","i/chairlifedrawing_fr-04.gif","i/chairlifedrawing_fr-05.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.thoughts.src=myPix[thisPic]
		}
	}

	// End hiding script from old browsers -->

