<!-- hide this script from non-javascript-enabled browsers
var imagesPreloaded;

imagesPreloaded = false;

// function that displays status bar message 
 function MenuMsg(msgStr)
 {
   document.returnValue = false;
   if (document.images)
   { 
      window.status = msgStr;
      document.returnValue = true;
   }
 }

function SetUpRollOver(pImageObject, SRC1, SRC2)
   {
   pImageObject.src1 = SRC1;
   pImageObject.src2 = SRC2;
   }

function preloadImages()
   {
   var index;
   var src1Array;
   src1Array = new Array();
   var src2Array;
   src2Array = new Array();
   if (document.images && !imagesPreloaded)
      {
      for (index = 0; index < document.images.length; index++)
         {
         if (document.images[index].src1 != null)
            {
            src1Array[index] = new Image(document.images[index].height, document.images[index].width);
            src1Array[index].src  = document.images[index].src1;
            }
         if (document.images[index].src2 != null)
            {
            src2Array[index] = new Image(document.images[index].height, document.images[index].width);
            src2Array[index].src  = document.images[index].src2;
            }
         }
      imagesPreloaded = true;
      }
   }
      
function swapImages(pImage, alt)
   {
   if (alt == 1)
      {
      document.images[pImage].src = document.images[pImage].src1;
      preloadImages();  
      }
   else
      {
      document.images[pImage].src = document.images[pImage].src2;
      preloadImages();  
      }
   }




// stop hiding --> 
