// Image Preloading and other image functions

// Array of Images to Preload (Edit as necessary)
// Preloading is mainly for dynload.js navigation
	var preloadImages = new Array();
	var imagesObj = new Array();
	
	preloadImages[0] = "/images/intro880x440.gif";  // center image on home.html
	// preloadImages[#] = "";

// Image preload function
// Takes: nothing - Globals: preloadImages array
function imagePreload() {
	for(var ndx = 0; ndx < preloadImages.length; ndx++) {
		imagesObj[ndx] = new Image();
		imagesObj[ndx].src = preloadImages[ndx];
	}
}
