//Javascript function works for Loading the Images

//***************************************************************************
//Name of the Application				Siam Nissan
//Name of the Code/Object/Reference		Script to load images (mainscript.js)
//URL of the application
//Name of the developer					Arkom Muhummudtohet
//Date of the devepment					NA
//Name of the Reviewer					Kameswar Padullaparti
//Date Reviewed							18th Feb 2003
//Version and Relase Number
//****************************************************************************


//var preimages=new Array()

function img(ct,img){ //Mouse Over and Out Function
	ct.src= img;
}
function color(ct,cl){ //Mouse Over and Out Function
	ct.style.color = cl;
}
				
function preloadimages(){//preload image
	for (i=0;i<preloadimages.arguments.length;i++){
		preimages[i]=new Image();
		preimages[i].src=preloadimages.arguments[i];
	}
}


