// Simple Image Preloader

// imagePreload
// Pass the URL(s) of images into the function to have them preloaded.
// Ex. - imagePreload('01.gif', '02.gif' )
function imagePreload()
{ 
  var args = imagePreload.arguments;
  document.imageArray = new Array(args.length);
  for(var i=0; i<args.length; i++)
  {
    document.imageArray[i] = new Image;
    document.imageArray[i].src = args[i];
  }
}
