<!--function WM_preloadImages() {/*WM_preloadImages()Loads images into the browser's cache for later use.Source: Webmonkey Code Library(http://www.hotwired.com/webmonkey/javascript/code_library/)Author: Nadav SavioAuthor Email: nadav@wired.comUsage: WM_preloadImages('../images/secdaily.gif', '../images/secexit.gif', '../images/sechome.gif', '../images/secmilleniumbus.gif', '../images/secnone.gif', '../images/secthecandidates.gif', '../images/secthecast.gif', '../images/sectourdates.gif', '../images/sectruckstop.gif');*/  // Don't bother if there's no document.images  if (document.images) {    var loadedImages = new Array;    // Loop through all the arguments.    for(arg=0;arg<WM_preloadImages.arguments.length;arg++) {      // For each arg, create a new image.      loadedImages[arg] = new Image();      // Then set the source of that image to the current argument.      loadedImages[arg].src = WM_preloadImages.arguments[arg];    }  }}// -->