/******************************************************************************
 * Function : prefetches images into browser cache
 * Purpose  : creates image objects for all of the images that are required
 *            by the navigation rollovers and then using their .src properties
 *            loads the .png files into the objects. 
 *            This prefetches the rollover images into the browser cache
 *            thus making them more responsive by eliminating the time that 
 *            would otherwise be required to fetch the hover graphics from the
 *            server.
 * Author   : Richard J. Haynes
 * Date     : 23 October 2008
 * Revision : 1.2
 * Notes    : 
 *
 ******************************************************************************/ 
// prefetch images into browser cache

// set up initial image objects
    var blank1 = new Image;
    

// load gif's into into their .src properties
    blank1.src = "images/Links/blank1.png";
   

// set up rollover image objects
    var blank2 = new Image;
   
// load gif's into into their .src properties
    blank2.src = "images/Links/blank2.png";
   
