/*
Preload images
*/

//setup array to hold images
var myimages=new Array()

//preload images function, loads each image listed below into array
function preloadimages(){
	for (i=0;i<preloadimages.arguments.length;i++){
		myimages[i]=new Image();
		myimages[i].src=preloadimages.arguments[i];
	}
}

//paths and filenames of images to be preloaded
preloadimages("/images/nav/splash_on.gif","/images/nav/splash_off.gif");