// JavaScript Document
//this is the function that makes the rollover work. Place int he head section.
function switchImage(imgName, imgSrc) 

{

  if (document.images)

  {

    if (imgSrc != "none")

    {

      document.images[imgName].src = imgSrc;

    }

  }

}

// End of rollover switch image function