
// europop JavaScript image swapping

compat = false;

if (parseInt( navigator.appVersion ) >= 3)
  compat = true;

if (compat)
{
  homeon       = new Image; (71,81)
  homeon.src   = "star_home.gif";
  homeoff      = new Image; (71,81)
  homeoff.src  = "star.gif";
  whoon = new Image; (71,81)
  whoon.src    = "star_who.gif";
  whooff       = new Image; (71,81)
  whooff.src   = "star.gif";
  whaton       = new Image; (71,81)
  whaton.src   = "star_what.gif";
  whatoff      = new Image; (71,81)
  whatoff.src  = "star.gif";
  whereon      = new Image; (71,81)
  whereon.src  = "star_where.gif";
  whereoff     = new Image; (71,81)
  whereoff.src = "star.gif";
  whyon        = new Image; (71,81)
  whyon.src    = "star_why.gif";
  whyoff       = new Image; (71,81)
  whyoff.src   = "star.gif";
}

function glow(x, y)
{
  if (compat)
    document.images[x].src=eval(y + ".src");
}

