﻿// JScript File
if (document.images) {
menuon = new Image();
menuon.src = "mainassets/buttons/menu_on.jpg";
menuoff = new Image();
menuoff.src = "mainassets/buttons/menu_off.jpg";

whatsnewon = new Image();
whatsnewon.src = "mainassets/buttons/whatsnew_on.jpg";
whatsnewoff = new Image();
whatsnewoff.src = "mainassets/buttons/whatsnew_off.jpg";

specialson = new Image();
specialson.src = "mainassets/buttons/specials_on.jpg";
specialsoff = new Image();
specialsoff.src = "mainassets/buttons/specials_off.jpg";

locatoron = new Image();
locatoron.src = "mainassets/buttons/locator_on.jpg";
locatoroff = new Image();
locatoroff.src = "mainassets/buttons/locator_off.jpg";

callaheadon = new Image();
callaheadon.src = "mainassets/buttons/callahead_on.jpg";
callaheadoff = new Image();
callaheadoff.src = "mainassets/buttons/callahead_off.jpg";

giftson = new Image();
giftson.src = "mainassets/buttons/gifts_on.jpg";
giftsoff = new Image();
giftsoff.src = "mainassets/buttons/gifts_off.jpg";

gueston = new Image();
gueston.src = "mainassets/buttons/guest_on.jpg";
guestoff = new Image();
guestoff.src = "mainassets/buttons/guest_off.jpg";

}
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");
        }
}

