// Preload Images
// Include this script in the head of your page and then include the following in your body tag:
// <body onload="preload('img1.jpg','img2.gif','img3.png');">
function Preload() {
 	var args = simplePreload.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];
	}
   }