// JavaScript Document
<!--
myPix = new Array("images/work/w1.jpg","images/work/w2.jpg", 
"images/work/w3.jpg","images/work/w4.jpg",
	"images/work/w5.jpg","images/work/w6.jpg",
	"images/work/w7.jpg","images/work/w8.jpg",
	"images/work/w9.jpg","images/work/w10.jpg",
	"images/work/w11.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]
		}
}

//-->
