bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
    if ((bName == "Netscape" && bVer >= 3) || 
        (bName == "Microsoft Internet Explorer" && bVer >= 4)) br = "n3"; 
    else br = "n2";
    if (br== "n3") { 
    img01on = new Image();
    img01on.src = "../images/magictouch/magictouch1on.jpg";
    img01off = new Image();
    img01off.src = "../images/magictouch/magictouch1off.jpg";

    img02on = new Image();
    img02on.src = "../images/magictouch/magictouch2on.jpg";
    img02off = new Image();
    img02off.src = "../images/magictouch/magictouch2off.jpg";

    img03on = new Image();
    img03on.src = "../images/magictouch/magictouch3on.jpg";
    img03off = new Image();
    img03off.src = "../images/magictouch/magictouch3off.jpg";

    img04on = new Image();
    img04on.src = "../images/magictouch/magictouch4on.jpg";
    img04off = new Image();
    img04off.src = "../images/magictouch/magictouch4off.jpg";

    img05on = new Image();
    img05on.src = "../images/magictouch/magictouch5on.jpg";
    img05off = new Image();
    img05off.src = "../images/magictouch/magictouch5off.jpg";
	
    img06on = new Image();
    img06on.src = "../images/magictouch/magictouch6on.jpg";
    img06off = new Image();
    img06off.src = "../images/magictouch/magictouch6off.jpg";
	
    img07on = new Image();
    img07on.src = "../images/magictouch/magictouch7on.jpg";
    img07off = new Image();
    img07off.src = "../images/magictouch/magictouch7off.jpg";
		
    img08on = new Image();
    img08on.src = "../images/magictouch/magictouch8on.jpg";
    img08off = new Image();
    img08off.src = "../images/magictouch/magictouch8off.jpg";
		
    img09on = new Image();
    img09on.src = "../images/magictouch/magictouch9on.jpg";
    img09off = new Image();
    img09off.src = "../images/magictouch/magictouch9off.jpg";
		
    img010on = new Image();
    img010on.src = "../images/magictouch/magictouch10on.jpg";
    img010off = new Image();
    img010off.src = "../images/magictouch/magictouch10off.jpg";
		
    img011on = new Image();
    img011on.src = "../images/magictouch/magictouch11on.jpg";
    img011off = new Image();
    img011off.src = "../images/magictouch/magictouch11off.jpg";
		
}
function imgAct(imgName) {
    if (br == "n3") {
    document[imgName].src = eval(imgName + "on.src");
    }
}
function imgInact(imgName) {
    if (br == "n3") {
    document[imgName].src = eval(imgName + "off.src");
    }
}