<!-- hide script from old browsers

//Script for image preload authored and copyrighted by Sarah Fox, Ph.D., Graphic Fusion, 2005 and 2010,
//with all rights reserved.  Use of this script by others is prohibited.

//Note: Load catalog.js before loading this script.


var preloadslide=new Image();
var i=1;

function preloadimage(){

   preloadslide.src="ph"+photo[i][3]+"sm.jpg";
   if (preloadslide.complete) {
      if (i<numphotos){
         i++;
         preloadimage();
      }
   }
   else {
      setTimeout("preloadimage()",500);
   }
   
}



// initiate preload sequence...
preloadimage();


//--end hide -->
