//preloadin image files

var myimages=new Array()
function preloadimages(){
	for (i=0;i<preloadimages.arguments.length;i++){
		myimages[i]=new Image()
		myimages[i].src=preloadimages.arguments[i]
	}
}


//Enter path of images to be preloaded inside parenthesis. Extend list as desired.
preloadimages("http://www.learn3d.org/index_images/submit_gallery.jpg",
"http://www.learn3d.org/index_images/submit_gallery_active.jpg",
"http://www.learn3d.org/index_images/logo_bk/top_menu_bk.jpg",
"http://www.learn3d.org/index_images/submit_site.jpg",
"http://www.learn3d.org/index_images/submit_site_active.jpg",
"http://www.learn3d.org/index_images/submit_tut.jpg",
"http://www.learn3d.org/index_images/submit_tut_active.jpg")