<!--
browserName = navigator.appName;          
browserVer = parseInt(navigator.appVersion);
if ((browserName == "Netscape" && browserVer >= 3) || (browserName == "Microsoft Internet Explorer" && browserVer >= 4) ) {
version = "n3";
} else {
version = "n2";
};

if (version == "n3") {
	m1on = new Image();
	m1on.src = "images/menu/m1_on.gif";
	m2on = new Image();
	m2on.src = "images/menu/m2_on.gif";
	m3on = new Image();
	m3on.src = "images/menu/m3_on.gif";
	m4on = new Image();
	m4on.src = "images/menu/m4_on.gif";
	m5on = new Image();
	m5on.src = "images/menu/m5_on.gif";
	m6on = new Image();
	m6on.src = "images/menu/m6_on.gif";
	m7on = new Image();
	m7on.src = "images/menu/m7_on.gif";
	m8on = new Image();
	m8on.src = "images/menu/m8_on.gif";
	m9on = new Image();
	m9on.src = "images/menu/m9_on_.gif";

	m1off = new Image();
	m1off.src = "images/menu/m1_off.gif";
	m2off = new Image();
	m2off.src = "images/menu/m2_off.gif";
	m3off = new Image();
	m3off.src = "images/menu/m3_off.gif";
	m4off = new Image();
	m4off.src = "images/menu/m4_off.gif";
	m5off = new Image();
	m5off.src = "images/menu/m5_off.gif";
	m6off = new Image();
	m6off.src = "images/menu/m6_off.gif";
	m7off = new Image();
	m7off.src = "images/menu/m7_off.gif";
	m8off = new Image();
	m8off.src = "images/menu/m8_off.gif";
	m9off = new Image();
	m9off.src = "images/menu/m9_off_.gif";
};

function swap_on(imgName) {
        if (version == "n3") {
        	imgOn = eval(imgName + "on.src");
        	document [imgName].src = imgOn;
		};
};				
function swap_off(imgName) {
        if (version == "n3") {
        	imgOff = eval(imgName + "off.src");
        	document [imgName].src = imgOff;
		};
};
//-->