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/n-main-blog-o.gif',
'/design/images/n-main-wwwn-o.gif',
'/design/images/n-main-atto-o.gif',
'/design/images/n-main-cont-o.gif'

);

	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];
	}
}