/* This code is Copyright (c) by CopyrightHolder */

	browserName = navigator.appName;
	browserVer = parseInt(navigator.appVersion);
	if ((browserName == "Netscape" && browserVer >= 3) | (browserVer >=4)) version ="yes";
		else version = "no";

	if (version == "yes") {
		intro1on = new Image(32, 142);
		intro1on.src = "./images/intro1_b.jpg";
		intro2on = new Image(32, 142);
		intro2on.src = "./images/intro2_b.jpg";
		intro3on = new Image(32, 142);
		intro3on.src = "./images/intro3_b.jpg";
		intro4on = new Image(32, 142);
		intro4on.src = "./images/intro4_b.jpg";
		intro5on = new Image(32, 142);
		intro5on.src = "./images/intro5_b.jpg";
		intro6on = new Image(32, 142);
		intro6on.src = "./images/intro6_b.jpg";
		intro7on = new Image(32, 142);
		intro7on.src = "./images/intro7_b.jpg";
		intro1off = new Image(32, 142);
		intro1off.src = "./images/intro1_a.jpg";
		intro2off = new Image(32, 142);
		intro2off.src = "./images/intro2_a.jpg";
		intro3off = new Image(32, 142);
		intro3off.src = "./images/intro3_a.jpg";
		intro4off = new Image(32, 142);
		intro4off.src = "./images/intro4_a.jpg";
		intro5off = new Image(32, 142);
		intro5off.src = "./images/intro5_a.jpg";
		intro6off = new Image(32, 142);
		intro6off.src = "./images/intro6_a.jpg";
		intro7off = new Image(32, 142);
		intro7off.src = "./images/intro7_a.jpg";

		btn1on = new Image(32, 142);
		btn1on.src = "./images/btn1_b.jpg";
		btn2on = new Image(32, 142);
		btn2on.src = "./images/btn2_b.jpg";
		btn3on = new Image(32, 142);
		btn3on.src = "./images/btn3_b.jpg";
		btn4on = new Image(32, 142);
		btn4on.src = "./images/btn4_b.jpg";
		btn5on = new Image(32, 142);
		btn5on.src = "./images/btn5_b.jpg";
		btn6on = new Image(32, 142);
		btn6on.src = "./images/btn6_b.jpg";
		btn7on = new Image(32, 142);
		btn7on.src = "./images/btn7_b.jpg";
		btn1off = new Image(32, 142);
		btn1off.src = "./images/btn1_a.jpg";
		btn2off = new Image(32, 142);
		btn2off.src = "./images/btn2_a.jpg";
		btn3off = new Image(32, 142);
		btn3off.src = "./images/btn3_a.jpg";
		btn4off = new Image(32, 142);
		btn4off.src = "./images/btn4_a.jpg";
		btn5off = new Image(32, 142);
		btn5off.src = "./images/btn5_a.jpg";
		btn6off = new Image(32, 142);
		btn6off.src = "./images/btn6_a.jpg";
		btn7off = new Image(32, 142);
		btn7off.src = "./images/btn7_a.jpg";
	}

	function img_act(imgName) {
		if (version == "yes") {
			imgOn = eval(imgName + "on.src");
			document [imgName].src = imgOn;
		}
	}

	function img_inact(imgName) {
		if (version == "yes") {
			imgOff = eval(imgName + "off.src");
			document [imgName].src = imgOff;
		}
	}

