
//preload images for navigation
nav_rates_on = new Image();
nav_rates_on = 'images/nav_rates_on.gif';

nav_about_on = new Image();
nav_about_on = 'images/nav_about_on.gif';

nav_reservations_on = new Image();
nav_reservations_on = 'images/nav_reservations_on.gif';

nav_events_on = new Image();
nav_events_on = 'images/nav_events_on.gif';

nav_contact_on = new Image();
nav_contact_on = 'images/nav_contact_on.gif';

nav_rooms_on = new Image();
nav_rooms_on = 'images/nav_rooms_on.gif';
//stop preloadin' images

function navOn(imName) {
		if (document.images) { 
		document.images[imName].src = 'images/' + imName + "_on.gif"
			 };
}
function navOff(imName) {
		if (document.images) { 
		document.images[imName].src = 'images/' + imName + '3.gif' 
		};
}