browserName = navigator.appName;
     browserVer = parseInt(navigator.appVersion);
             if (browserName == "Netscape", "Microsoft Internet Explorer" && browserVer >= 3) version = "n3";
             else version = "n2";
             
             if (version == "n3") {
             s1on = new Image();
             s1on.src = "images/m-home-on.gif";
             s2on = new Image();
             s2on.src = "images/m-about-on.gif";
             s3on = new Image();
             s3on.src = "images/m-hot-on.gif";
             s4on = new Image();
             s4on.src = "images/m-courses-on.gif";
             s5on = new Image();
             s5on.src = "images/m-training-on.gif";
             s6on = new Image();
             s6on.src = "images/m-testimonials-on.gif";
	    	 s7on = new Image();
             s7on.src = "images/m-opportunity-on.gif";
	     	 s8on = new Image();
             s8on.src = "images/m-news-on.gif";

             s1off = new Image();
             s1off.src = "images/m-home-off.gif";
             s2off = new Image();
             s2off.src = "images/m-about-off.gif";
             s3off = new Image();
             s3off.src = "images/m-hot-off.gif";
             s4off = new Image();
             s4off.src = "images/m-courses-off.gif";
             s5off = new Image();
             s5off.src = "images/m-training-off.gif";
             s6off = new Image();
             s6off.src = "images/m-testimonials-off.gif";
	    	 s7off = new Image();
             s7off.src = "images/m-opportunity-off.gif";
	     	 s8off = new Image();
             s8off.src = "images/m-news-off.gif";

             }

     function img_act(imgName) {
             if (version == "n3") {
             imgOn = eval(imgName + "on.src");
             document [imgName].src = imgOn;
             }
     }

     function img_inact(imgName) {
             if (version == "n3") {
             imgOff = eval(imgName + "off.src");
             document [imgName].src = imgOff;
             }
     }