if (document.images) {
      
home_off = new Image();
home_off.src = "buttons/home.jpg"
home_on = new Image();
home_on.src = "buttons/home2.jpg"
shows_off = new Image();
shows_off.src = "buttons/shows.jpg"
shows_on = new Image();
shows_on.src = "buttons/shows2.jpg"
apparel_off = new Image();
apparel_off.src = "buttons/apparel.jpg"
apparel_on = new Image();
apparel_on.src = "buttons/apparel2.jpg"
catalog_off = new Image();
catalog_off.src = "buttons/catalog.jpg"
catalog_on = new Image();
catalog_on.src = "buttons/catalog2.jpg"
company_off = new Image();
company_off.src = "buttons/company.jpg"
company_on = new Image();
company_on.src = "buttons/company2.jpg"
contact_off = new Image();
contact_off.src = "buttons/contact.jpg"
contact_on = new Image();
contact_on.src = "buttons/contact2.jpg"
links_off = new Image();
links_off.src = "buttons/links.jpg"
links_on = new Image();
links_on.src = "buttons/links2.jpg"
            
}

function buttonOff(imgName) {
   document[imgName].src = eval(imgName + "_off.src");
}

function buttonOn(imgName) {
   document[imgName].src = eval(imgName + "_on.src");
}


function popUp(url,name,width,height) {
   var properties = "toolbar = 0, location = 0, height = " + height;
   properties = properties + ", width=" + width;
   popupHandle = open(url,name,properties);
}

if (top.location != self.location) {
top.location = self.location.href
}
