if (document.images) {
  link01on = new Image(53,28);
  link01on.src = "/image/layout/01-band-glow.jpg";
  link01off = new Image(53,28);
  link01off.src = "/image/layout/01-band.jpg";

  link02on = new Image(112,28);
  link02on.src = "/image/layout/02-disco-glow.jpg";
  link02off = new Image(112,28);
  link02off.src = "/image/layout/02-disco.jpg";

  link03on = new Image(66,28);
  link03on.src = "/image/layout/03-shows-glow.jpg";
  link03off = new Image(66,28);
  link03off.src = "/image/layout/03-shows.jpg";

  link04on = new Image(61,28);
  link04on.src = "/image/layout/04-media-glow.jpg";
  link04off = new Image(61,28);
  link04off.src = "/image/layout/04-media.jpg";

  link05on = new Image(65,28);
  link05on.src = "/image/layout/05-photos-glow.jpg";
  link05off = new Image(65,28);
  link05off.src = "/image/layout/05-photos.jpg";
  
  link06on = new Image(56,28);
  link06on.src = "/image/layout/06-merch-glow.jpg";
  link06off = new Image(56,28);
  link06off.src = "/image/layout/06-merch.jpg";

  link07on = new Image(52,28);
  link07on.src = "/image/layout/07-links-glow.jpg";
  link07off = new Image(52,28);
  link07off.src = "/image/layout/07-links.jpg";

  link08on = new Image(63,28);
  link08on.src = "/image/layout/08-contact-glow.jpg";
  link08off = new Image(63,28);
  link08off.src = "/image/layout/08-contact.jpg";
}

function highlight(imageName) {
  if (document.images) {
    imgHighlight = eval(imageName + "on.src");
      document.images[imageName].src = imgHighlight;
  }
}

function reglight(imageName) {
  if (document.images) {
    imgReglight = eval(imageName + "off.src");
    document.images[imageName].src = imgReglight;
  }
}
