/* Functions for image rollovers */

function swapimage (imgId, imgURL)
{
  if (document.images)
  {
    document.getElementById(imgId).src = imgURL;
  }
}
