<!--
if (document.images) {         //Active Images
abouton = new Image();
abouton.src = "images/menu/about_on.gif";
rateson = new Image();
rateson.src = "images/menu/rates_on.gif";
featureson = new Image();
featureson.src = "images/menu/features_on.gif";
photoon = new Image();
photoon.src = "images/menu/photo_on.gif";
locationon = new Image();
locationon.src = "images/menu/location_on.gif";
activitieson = new Image();
activitieson.src = "images/menu/activities_on.gif";
bookingson = new Image();
bookingson.src = "images/menu/bookings_on.gif";
contacton = new Image();
contacton.src = "images/menu/contact_on.gif";


aboutoff = new Image();   //Inactive Images
aboutoff.src = "images/menu/about_off.gif";
ratesoff = new Image();
ratesoff.src = "images/menu/rates_off.gif";
featuresoff = new Image();
featuresoff.src = "images/menu/features_off.gif";
photooff = new Image();
photooff.src = "images/menu/photo_off.gif";
locationoff = new Image();
locationoff.src = "images/menu/location_off.gif";
activitiesoff = new Image();
activitiesoff.src = "images/menu/activities_off.gif";
bookingsoff = new Image();
bookingsoff.src = "images/menu/bookings_off.gif";
contactoff = new Image();
contactoff.src = "images/menu/contact_off.gif";
}

//Function to 'activate' images.
function imgOn(imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "on.src");
}
}

//Function to 'deactivate' images.
function imgOff(imgName, onOff) {
if (document.images && onOff != 'on') {
document[imgName].src = eval(imgName + "off.src");
}
}
// -->

