



<!--Hide from old browsers

if (document.images)

            {

     menu1on = new Image();
     menu1on.src = "himages/home_on.gif";
     menu1off = new Image();
     menu1off.src = "himages/home_off.gif"; 

     menu2on = new Image();
     menu2on.src = "himages/lodging_on.gif";
     menu2off = new Image();
     menu2off.src = "himages/lodging_off.gif"; 

     menu3on = new Image();
     menu3on.src = "himages/rates_on.gif";
     menu3off = new Image();
     menu3off.src = "himages/rates_off.gif";

     menu4on = new Image();
     menu4on.src = "himages/activities_on.gif";
     menu4off = new Image();
     menu4off.src = "himages/activities_off.gif";

     menu5on = new Image();
     menu5on.src = "himages/attractions_on.gif";
     menu5off = new Image();
     menu5off.src = "himages/attractions_off.gif";

     menu6on = new Image();
     menu6on.src = "himages/location_on.gif";
     menu6off = new Image();
     menu6off.src = "himages/location_off.gif"; 

     menu7on = new Image();
     menu7on.src = "himages/email_on.gif";
     menu7off = new Image();
     menu7off.src = "himages/email_off.gif";

  
            }

function img_act(imgName) {
        if (document.images) {
        imgOn = eval(imgName + "on.src");
        document [imgName].src = imgOn;
        }
}

function img_inact(imgName) {
        if (document.images) {
        imgOff = eval(imgName + "off.src");
        document [imgName].src = imgOff;

  }
}

function statuson (text)
{
   window.status=(text)
        if (document.images){setTimeout("statusoff()",10000);}
}

function statusoff ()
   {window.status="";}

// Stop hiding from old browsers-->
