// JavaScript Document
<!--
myPix = new Array("images/Print/w1.jpg","images/Print/w2.jpg", 
"images/Print/w3.jpg","images/Print/w4.jpg",
	"images/Print/w5.jpg","images/Print/w6.jpg",
	"images/Print/w7.jpg","images/Print/w8.jpg",
	"images/Print/w9.jpg","images/Print/w10.jpg",
	"images/Print/w11.jpg","images/Print/w12.jpg",
	"images/Print/w13.jpg","images/Print/w14.jpg",
	"images/Print/w15.jpg","images/Print/w16.jpg",
	"images/Print/w17.jpg","images/Print/w18.jpg",
	 	"images/Print/w19.jpg","images/Print/w20.jpg",
		"images/Print/w21.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]
		}
}

//-->
