<!--//hide contents
browserName = navigator.appName;   // detect browser
browserVer = parseInt(navigator.appVersion);
if (((navigator.appName == "Netscape") && (parseInt (navigator.appVersion) >= 3)) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt (navigator.appVersion) >= 4))) version = "n3";
     else version = "n2";
       
     if (version == "n3") {
     menu1on = new Image();
     menu1on.src = "../images/nav/hhome.gif";
     menu2on = new Image();
     menu2on.src = "../images/nav/hfranchise.gif";
     menu3on = new Image();
     menu3on.src = "../images/nav/hcafe.gif";
     menu4on = new Image();
     menu4on.src = "../images/nav/hshopping.gif";
     menu5on = new Image();
     menu5on.src = "../images/nav/haboutbab.gif";
     menu6on = new Image();
     menu6on.src = "../images/nav/hmybab.gif";

     menu1off = new Image();
     menu1off.src = "../images/nav/nhome.gif";
     menu2off = new Image();
     menu2off.src = "../images/nav/nfranchise.gif";
     menu3off = new Image();
     menu3off.src = "../images/nav/ncafe.gif";
     menu4off = new Image();
     menu4off.src = "../images/nav/nshopping.gif";
     menu5off = new Image();
     menu5off.src = "../images/nav/naboutbab.gif";
     menu6off = new Image();
     menu6off.src = "../images/nav/nmybab.gif";
    

     }
function img_act(imgName) {
     if (version == "n3") {
     document[imgName].src = eval(imgName + "on.src");
     }
}
function img_inact(imgName) {
     if (version == "n3") {
     document[imgName].src = eval(imgName + "off.src");
     }
}
// -->
