<!-- Image Swapper

function swap(imageId) {
  if(document.getElementById) {
      var img = document.getElementById(imageId);
      img.src = (img.src.indexOf("plus.gif") != -1) ? "images/minus.gif" : "images/plus.gif";
  }
  return false;
}
//-->