<!-- hide this script from non-javascript-enabled browsers 

/* Function that swaps images. */

function change(id, newSrc) {
    var theImage = FWFindImage(document, id, 0);
    if (theImage) {
        theImage.src = newSrc;
    }
}

/* Functions that track and set toggle group button states. */

function FWFindImage(doc, name, j) {
    var theImage = false;
    if (doc.images) {
        theImage = doc.images[name];
    }
    if (theImage) {
        return theImage;
    }
    if (doc.layers) {
        for (j = 0; j < doc.layers.length; j++) {
            theImage = FWFindImage(doc.layers[j].document, name, 0);
            if (theImage) {
                return (theImage);
            }
        }
    }
    return (false);
}


// Netscape 3.0 compatibility (image swapping)
compat = false; 
if( parseInt( navigator.appVersion ) >= 3 ) {
 		compat = true;  }
// cache images
if (compat) {
bg = new Image(); bg.src ="/img/bg.jpg";
inavo_history = new Image(); inavo_history.src = "/img/inavo_history.gif";
inavo_reservations = new Image(); inavo_reservations.src = "/img/inavo_reservations.gif";
inavo_location = new Image(); inavo_location.src = "/img/inavo_location.gif";
inavo_roomsrates = new Image(); inavo_roomsrates.src = "/img/inavo_roomsrates.gif";
hnavo_history = new Image(); hnavo_history.src = "/img/hnavo_history.gif";
hnavo_reservations = new Image(); hnavo_reservations.src = "/img/hnavo_reservations.gif";
hnavo_location = new Image(); hnavo_location.src = "/img/hnavo_location.gif";
hnavo_roomsrates = new Image(); hnavo_roomsrates.src = "/img/hnavo_roomsrates.gif";
}



//---end hiding script-->

