<!--
//test the browser versions so early versions won't display

           bName = navigator.appName;
           bVer = parseInt(navigator.appVersion);
           if ((bName == "Netscape" && bVer >= 3) ||
           (bName == "Microsoft Internet Explorer" &&
           bVer >= 4)) br = "n3";
           else br = "n2";

// Create image objects and preload all active and inactive images.
           if (br== "n3") {
		   
           img0on         	= new Image();
           img0on.src   	= "../Global/images/buttonBrands_on.gif";
           img0off        	= new Image();
           img0off.src   	= "../Global/images/buttonBrands_off.gif";
           
           img1on       	= new Image();
           img1on.src  		= "../Global/images/buttonBasics_on.gif";
           img1off      	= new Image();
           img1off.src   	= "../Global/images/buttonBasics_off.gif";

           img2on       	= new Image();
           img2on.src   	= "../Global/images/buttonFaq_on.gif";
           img2off        	= new Image();
           img2off.src   	= "../Global/images/buttonFaq_off.gif";

           img3on       	= new Image();
           img3on.src   	= "../Global/images/buttonBattPredictor_on.gif";
           img3off        	= new Image();
           img3off.src   	= "../Global/images/buttonBattPredictor_off.gif";

           img4on       	= new Image();
           img4on.src   	= "../Global/images/buttonAbout_on.gif";
           img4off        	= new Image();
           img4off.src   	= "../Global/images/buttonAbout_off.gif";
		   
		   img5on       	= new Image();
           img5on.src   	= "../Global/images/buttonHome_on.gif";
           img5off        	= new Image();
           img5off.src   	= "../Global/images/buttonHome_off.gif";
		   
		   img6on       	= new Image();
           img6on.src   	= "images/buttonBatteryWorks_on.gif";
           img6off        	= new Image();
           img6off.src   	= "images/buttonBatteryWorks_off.gif";
		   
		   img7on       	= new Image();
           img7on.src   	= "images/buttonJumpStart_on.gif";
           img7off        	= new Image();
           img7off.src   	= "images/buttonJumpStart_off.gif";
		   
		   img8on       	= new Image();
           img8on.src   	= "images/buttonDefinitions_on.gif";
           img8off        	= new Image();
           img8off.src   	= "images/buttonDefinitions_off.gif";
		   
		   img9on       	= new Image();
           img9on.src   	= "images/buttonSafety_on.gif";
           img9off        	= new Image();
           img9off.src   	= "images/buttonSafety_off.gif";
		   
		   img10on       	= new Image();
           img10on.src   	= "images/buttonMaintenance_on.gif";
           img10off        	= new Image();
           img10off.src   	= "images/buttonMaintenance_off.gif";
		   
		   img11on       	= new Image();
           img11on.src   	= "images/buttonChargingBatttery_on.gif";
           img11off        	= new Image();
           img11off.src   	= "images/buttonChargingBatttery_off.gif";
		   
		   img12on       	= new Image();
           img12on.src   	= "images/buttonChoosingBatttery_on.gif";
           img12off        	= new Image();
           img12off.src   	= "images/buttonChoosingBatttery_off.gif";  
		   
		   img13on       	= new Image();
           img13on.src   	= "images/buttonRecyling_on.gif";
           img13off        	= new Image();
           img13off.src   	= "images/buttonRecyling_off.gif";
           
           img14on       	= new Image();
           img14on.src   	= "../Global/images/top_on.gif";
           img14off        	= new Image();
           img14off.src   	= "../Global/images/top_off.gif"; 
           }



// Replace the off image with the on image
           function imgOn(imgName) {
           if (br== "n3") {
               document[imgName].src = eval(imgName+"on.src");
              }
           }

// Replace the on image with the off image
           function imgOff(imgName) {
           if (br== "n3") {
              document[imgName].src = eval(imgName+"off.src");
              }
           }
//-->