/*
Preload images script
By JavaScript Kit (http://javascriptkit.com)
Over 400+ free scripts here!
*/
var myimages=new Array()


//Enter path of images to be preloaded inside parenthesis. Extend list as desired.

preloadimages(
		"./im/tbar_home_hl.gif",
		"./im/tbar_register_hl.gif",
		"./im/tbar_reports_hl.gif",
		"./im/tbar_logout_hl.gif",
		"./im/tbar_admin_hl.gif",
		"./im/tbar_contactus_hl.gif"
);


function preloadimages(){
	for (i=0;i<preloadimages.arguments.length;i++){
		myimages[i]=new Image()
		myimages[i].src=preloadimages.arguments[i]
	}
}