/*MouseOver Images*/
/*Must include subdirectory with image name*/

if (document.images)
{
  imageNames = new Array ("graphics/HmMn-Health", "graphics/HmMn-Safety", "graphics/HmMn-Recreation", "graphics/HmMn-bg-Competition");
  onImages = new Array (imageNames.length);

  for (n = 0; n < imageNames.length; n++)
  {
    onImages[n] = new Image();
    onImages[n].src = "/images/" + imageNames[n] + "1.jpg";
  }
}

function menuOn (name)
{
  if ( document.images )
  {
    document.images[name].src = "/images/" + name + "1.jpg";
  }
}

function menuOff (name)
{
  if ( document.images )
  {
    document.images[name].src = "/images/" + name + "0.jpg";
  }
}
