var home, home_hl;
var who, who_hl;
var photos, photos_hl;
var web, web_hl;
var stats, stats_hl;
var links, links_hl;
var about, about_hl;
var contact, contact_hl;

function preload() {
//  This caused errors on IE7 - Goblin
//  if (document.images) {
    home_hl = new Image(178, 39);
    home_hl.src = "images/Menu/Highlight/Home.jpg";
    home = new Image(178, 39);
    home.src = "images/Menu/Home.jpg";

    who_hl = new Image(178, 39);
    who_hl.src = "images/Menu/Highlight/Who.jpg";
    who = new Image(178, 39);
    who.src = "images/Menu/Who.jpg";

    photos_hl = new Image(178, 39);
    photos_hl.src = "images/Menu/Highlight/Photos.jpg";
    photos = new Image(178, 39);
    photos.src = "images/Menu/Photos.jpg";

    web_hl = new Image(178, 39);
    web_hl.src = "images/Menu/Highlight/Web.jpg";
    web = new Image(178, 39);
    web.src = "images/Menu/Web.jpg";

    stats_hl = new Image(178, 39);
    stats_hl.src = "images/Menu/Highlight/Stats.jpg";
    stats = new Image(178, 39);
    stats.src = "images/Menu/Stats.jpg";

    links_hl = new Image(178, 39);
    links_hl.src = "images/Menu/Highlight/Links.jpg";
    links = new Image(178, 39);
    links.src = "images/Menu/Links.jpg";

    about_hl = new Image(178, 39);
    about_hl.src = "images/Menu/Highlight/About.jpg";
    about = new Image(178, 39);
    about.src = "images/Menu/About.jpg";

    contact_hl = new Image(178, 39);
    contact_hl.src = "images/Menu/Highlight/Contact.jpg";
    contact = new Image(178, 39);
    contact.src = "images/Menu/Contact.jpg";
//  }
}

function highlight(imgName) {
  if (document.images) {
    var img = document.getElementById(imgName);
    img.src = eval(imgName + "_hl.src");
  }
}

function normal(imgName) {
  if (document.images) {
    var img = document.getElementById(imgName);
    img.src = eval(imgName + ".src");
  }
}
