
function switchImage(imgSrc, imgName)
{

  // mouse on/off any image not contained in a layer
  if(document.images)
    {
	document[imgName].src = imgSrc;
    }

}