<!--
if (document.images) {

	m1on = new Image(); m1on.src = "images/m1_on.jpg";
	m2on = new Image(); m2on.src = "images/m2_on.jpg";

	m1off = new Image(); m1off.src = "images/m1_off.jpg";
	m2off = new Image(); m2off.src = "images/m2_off.jpg";

		}
imgOff = null;
	function changeOn(imageID) {
		if (document.images) {
			imgOff = eval(imageID + "off.src");
			imgOn = eval(imageID + "on.src");
			document.images[imageID].src = imgOn;
		}
		else {}
	}

	function changeOff(imageID) {
		if (document.images) {
			document.images[imageID].src = imgOff;
		}
		else {}
	}
//-->

