// JavaScript Document
<!--
myPix = new Array("images/Exhibition work/s1.jpg","images/Exhibition work/s2.jpg", 
"images/Exhibition work/s3.jpg","images/Exhibition work/s4.jpg",
	"images/Exhibition work/s5.jpg","images/Exhibition work/s6.jpg",
	"images/Exhibition work/s7.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.myPicture.src=myPix[thisPic]
		}
}

//-->
