function swapCover(sImg, sIndex)
{
  document.images[sImg].alt = "Loading Image...";
  document.images[sImg].src = "images/" + sIndex;
  return true;
}
