function preloadImages() {
	var preloadImageList = new Array(

/* ===== The following is an example of how to add images that need to be preloaded. ======= */
/* ===== Note that the last line does not have a "," at the end. =========================== */

'/design/images/test-a.jpg',
'/design/images/test-o.jpg'

);

	doPreload(preloadImageList); // Do Not Remove This Line
}

function doPreload(preloadImageArray) {
	var i,img,a=preloadImageArray;

	for(i=0; i<a.length; i++) {
		var img=new Image();
		img.src=a[i];
	}
}