<!--//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_franchise_new.gif";
     menu2on = new Image();
     menu2on.src = "images/nav/hhome_cafe.gif";
     menu3on = new Image();
     menu3on.src = "images/nav/hhome_shopping.gif";
     menu4on = new Image();
     menu4on.src = "images/nav/hhome_aboutbab.gif";
     menu5on = new Image();
     menu5on.src = "images/nav/hhome_mybab11.gif";
    
     menu1off = new Image();
     menu1off.src = "images/nav/nhome_franchise.gif";
     menu2off = new Image();
     menu2off.src = "images/nav/nhome_cafe.gif";
     menu3off = new Image();
     menu3off.src = "images/nav/nhome_shopping.gif";
     menu4off = new Image();
     menu4off.src = "images/nav/nhome_aboutbab.gif";
     menu5off = new Image();
     menu5off.src = "images/nav/nhome_mybab.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");
     }
}
// -->