var basedir="/NAVAGATE/";
//-----browser id------------------------

        browserName = navigator.appName;
        browserVer = parseInt(navigator.appVersion);
        if (browserName == "Netscape" && browserVer >= 3) canDo = "yes";
        else canDo = "no";

function navigate(){}
var remote=0
//-----map rollover----------------------  
                    
                if (canDo == "yes")
                {
                toc1off = new Image(90, 26);
                toc1off.src = "menu/staticgallery.JPG";
                toc1on = new Image(90, 26);
                toc1on.src = "menu/dynagall.JPG";
                toc2off = new Image(93, 26);
                toc2off.src = "menu/statictourinfo.JPG";
                toc2on = new Image(93, 26);
                toc2on.src = "menu/dynatourinfo.JPG";
                toc3off = new Image(67, 32);
                toc3off.src = "menu/staticnews.JPG";
                toc3on = new Image(67, 32);
                toc3on.src = "menu/dynanews.JPG";
                toc4off = new Image(67, 28);
                toc4off.src = "menu/statictheater.JPG";
                toc4on = new Image(67, 28);
                toc4on.src = "menu/dynatheater.JPG";
                toc5off = new Image(129, 28);
                toc5off.src = "menu/staticmainpage.JPG";
                toc5on = new Image(129, 28);
                toc5on.src = "menu/dynamain.JPG";
                toc6off = new Image(129, 28);
                toc6off.src = "menu/staticfarmstand.JPG";
                toc6on = new Image(129, 28);
                toc6on.src = "menu/dynastand.JPG";
                toc7off = new Image(65, 25);
                toc7off.src = "menu/statictourattractions.JPG";
                toc7on = new Image(65, 25);
                toc7on.src = "menu/dynatourattractions.JPG";
                toc8off = new Image(129, 28);
                toc8off.src = "menu/staticmaizemaze.JPG";
                toc8on = new Image(129, 28);
                toc8on.src = "menu/dynamaizemaze.JPG";     
                }

              function img_act(imgName)
              {
                      if (canDo == "yes") 
                      {
                      imgOn = eval(imgName + "on.src");
                      document [imgName].src = imgOn;
                      }
              }

              function img_inact(imgName)
              {
                      if (canDo == "yes") 
                      {
                      imgOff = eval(imgName + "off.src");
                      document [imgName].src = imgOff;
                      }
              }




