<!--
function replaceImage(original, substitute) {
   if (document.images) { // make sure the browser supports on-line image changing
      for (var i=0; i < document.images.length; i++) {
         var imageString = document.images[i].src.toString();
         if (imageString.indexOf(original) != -1) {
            document.images[i].src = substitute;
         }
      } // Move on to the next image
   } // Ends the check to make sure image swapping is supported
} // Ends the "replaceImage" function

replaceImage("/icons/collapse.gif", "/LV/lvcms.nsf/collapse.gif");
replaceImage("/icons/expand.gif", "/LV/lvcms.nsf/expand.gif");
// -->

