function swapImg( id, newImg )
{
  if ( document.getElementById( id ) )
  {
    document.getElementById( id ).src = newImg;
  }
}
