﻿// JScript File

if (document.images) {

datesopenon = new Image();
datesopenon.src = "images/buttons/datesopen-hover.gif";
datesopenoff = new Image();
datesopenoff.src = "images/buttons/datesopen-button.gif";
datesopendown = new Image();
datesopendown.src = "images/buttons/datesopen-down.gif";

attractionson = new Image();
attractionson.src = "images/buttons/attractions-hover.gif";
attractionsoff = new Image();
attractionsoff.src = "images/buttons/attractions-button.gif";
attractionsdown = new Image();
attractionsdown.src = "images/buttons/attractions-down.gif";


directionsfallon = new Image();
directionsfallon.src = "images/buttons/directions-hover.gif";
directionsfalloff = new Image();
directionsfalloff.src = "images/buttons/directions-button.gif";
directionsfalldown = new Image();
directionsfalldown.src = "images/buttons/directions-down.gif";

ticketsfallon = new Image();
ticketsfallon.src = "images/buttons/tickets-hover.gif";
ticketsfalloff = new Image();
ticketsfalloff.src = "images/buttons/tickets-button.gif";
ticketsfalldown = new Image();
ticketsfalldown.src = "images/buttons/tickets-down.gif";

datesfallon = new Image();
datesfallon.src = "images/buttons/dates-hover.gif";
datesfalloff = new Image();
datesfalloff.src = "images/buttons/dates-button.gif";
datesfalldown = new Image();
datesfalldown.src = "images/buttons/dates-down.gif";

snacksfallon = new Image();
snacksfallon.src = "images/buttons/snacks-hover.gif";
snacksfalloff = new Image();
snacksfalloff.src = "images/buttons/snacks-button.gif";
snacksfalldown = new Image();
snacksfalldown.src = "images/buttons/snacks-down.gif";

contactusfallon = new Image();
contactusfallon.src = "images/buttons/contactus-hover.gif";
contactusfalloff = new Image();
contactusfalloff.src = "images/buttons/contactus-button.gif";
contactusfalldown = new Image();
contactusfalldown.src = "images/buttons/contactus-down.gif";

couponsfallon = new Image();
couponsfallon.src = "images/buttons/coupons-hover.gif";
couponsfalloff = new Image();
couponsfalloff.src = "images/buttons/coupons-button.gif";
couponsfalldown = new Image();
couponsfalldown.src = "images/buttons/coupons-down.gif";

galleryfallon = new Image();
galleryfallon.src = "images/buttons/gallery-hover.gif";
galleryfalloff = new Image();
galleryfalloff.src = "images/buttons/gallery-button.gif";
galleryfalldown = new Image();
galleryfalldown.src = "images/buttons/gallery-down.gif";

weatherfallon = new Image();
weatherfallon.src = "images/buttons/weather-hover.gif";
weatherfalloff = new Image();
weatherfalloff.src = "images/buttons/weather-button.gif";
weatherfalldown = new Image();
weatherfalldown.src = "images/buttons/weather-down.gif";
}
function imgOn(imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "on.src");
        }
}
function imgOff(imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "off.src");
        }
}
function imgDown(imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "down.src");
        }
}