	var galleryCount = 1;

	function galleryBack() {
		galleryCount--;
		if (galleryCount == 0) {galleryCount = galleryMaxPic;}
		eval("document.productphoto.src=PhotoArray[galleryCount].src");
							}

	function galleryNext() {
		galleryCount++;
		if (galleryCount > galleryMaxPic) {galleryCount = 1;	}
		eval("document.productphoto.src=PhotoArray[galleryCount].src");
						}

	function galleryLink() {location.href=eval("link" + galleryCount);}
