<!-- //This first script defnes the code needed to pre-load images
function preloadImages() {
if (document.images) {
var imgFiles = preloadImages.arguments;
var preloadArray = new Array();
for (var i=0; i < imgFiles.length; i++) {
//Create a new image object in the preloadArray array and associate it with a source file, thus loading that image into memory preloadArray[i] = new Image;
preloadArray[i].src = imgFiles[i];
}
}
}
//-->


