<!--
if (document.images) {

	topm1on = new Image(); topm1on.src = "images/top1_on.jpg";
	topm2on = new Image(); topm2on.src = "images/top2_on.jpg";

	tm1on = new Image(); tm1on.src = "images/tm1_on.jpg";
	tm2on = new Image(); tm2on.src = "images/tm2_on.jpg";
	tm3on = new Image(); tm3on.src = "images/tm3_on.jpg";
	tm4on = new Image(); tm4on.src = "images/tm4_on.jpg";
	
	m1on = new Image(); m1on.src = "images/m1_on.jpg";
	m2on = new Image(); m2on.src = "images/m2_on.jpg";
	m3on = new Image(); m3on.src = "images/m3_on.jpg";
	m4on = new Image(); m4on.src = "images/m4_on.jpg";
	m5on = new Image(); m5on.src = "images/m5_on.jpg";
	m6on = new Image(); m6on.src = "images/m6_on.jpg";

	topm1off = new Image(); topm1off.src = "images/top1_off.jpg";
	topm2off = new Image(); topm2off.src = "images/top2_off.jpg";	
	
	tm1off = new Image(); tm1off.src = "images/tm1_off.jpg";
	tm2off = new Image(); tm2off.src = "images/tm2_off.jpg";
	tm3off = new Image(); tm3off.src = "images/tm3_off.jpg";
	tm4off = new Image(); tm4off.src = "images/tm4_off.jpg";	
	
	m1off = new Image(); m1off.src = "images/m1_off.jpg";
	m2off = new Image(); m2off.src = "images/m2_off.jpg";
	m3off = new Image(); m3off.src = "images/m3_off.jpg";
	m4off = new Image(); m4off.src = "images/m4_off.jpg";
	m5off = new Image(); m5off.src = "images/m5_off.jpg";
	m6off = new Image(); m6off.src = "images/m6_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 {}
	}
//-->

