	<!--

	myPix = new Array(
		"images/epXXvhsusa.jpg",
		"images/s1dvdusa.jpg",
		"images/s1dvduk.jpg",
		"images/s1dvdfr.jpg",
		"images/s1dvdjp.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]
		}
	}

	// -->