
	function GrayOff(imgid) {
		imgid.style.filter='';
	}

	function GrayOn(imgid) {
		imgid.style.filter='gray';
	}
