// JavaScript Document
// IMAGE PRELOADER

var arImages=new Array();
function Preload() {
 var temp = Preload.arguments; 
 for(x=0; x < temp.length; x++) {
  arImages[x]=new Image();
  arImages[x].src=Preload.arguments[x];
 }
}


// Call the Preload function in the onload event of your page's < body > tag, passing the names of the images (including paths if necessary) to be preloaded, as parameters. For example:
// <body onload="Preload('image1.gif','image2.gif')"> 