//     Image Preloading Script//     Timothy Quinn, February 2002////     The following function preloads the images required for rollovers on a given//     webpage. Note that the preload script and the rollover script have been separated//     so that different pages can access different preloaded images. The global variable//     IMAGESPRELOADED is used to prevent a bug in some versions of Netscape Navigator ///     Communicator which enables an image rollover to be executed before a page's HTML//     has been entirely drawn on the screen.var imagesPreloaded = 0;                      // initialize global variablefunction preloadGraphics() {                  // preload graphics  if (document.images && imagesPreloaded < 1) {  // rollovers  aboutOn = new Image();                   aboutOn.src = "images/nav-main/about-on.gif";  latestOn = new Image();                  latestOn.src = "images/nav-main/latest-on.gif";  libraryOn = new Image();                 libraryOn.src = "images/nav-main/library-on.gif";  contactOn = new Image();                 contactOn.src = "images/nav-main/contact-on.gif";  testimonialsOn = new Image();            testimonialsOn.src = "images/nav-main/testimonials-on.gif";  aboutOut = new Image();                  aboutOut.src = "images/nav-main/about-out.gif";  latestOut = new Image();                 latestOut.src = "images/nav-main/latest-out.gif";  libraryOut = new Image();                libraryOut.src = "images/nav-main/library-out.gif";  contactOut = new Image();                contactOut.src = "images/nav-main/contact-out.gif";  testimonialsOut = new Image();           testimonialsOut.src = "images/nav-main/testimonials-out.gif";  aboutFloral = new Image();               aboutFloral.src = "images/nav-main/about-floral.jpg";  latestFloral = new Image();              latestFloral.src = "images/nav-main/latest-floral.jpg";  libraryFloral = new Image();             libraryFloral.src = "images/nav-main/library-floral.jpg";  contactFloral = new Image();             contactFloral.src = "images/nav-main/contact-floral.jpg";  testimonialsFloral = new Image();        testimonialsFloral.src = "images/nav-main/testimonials-floral.jpg";  imagesPreloaded = 1;  }}