<!-- Begin

// Preload image script
// SYNTAX: <script type="text/javascript" src="js/preload.js"></script>

if (document.images) {
	preload_image_object = new Image();
	// set image urls
	image_url = new Array();
	image_url[0] = "http://www.unityoforoville.org/images/homeicon-off.gif";
	image_url[1] = "http://www.unityoforoville.org/images/homeicon-on.gif";
	image_url[2] = "http://www.unityoforoville.org/images/contacticon-off.gif";
	image_url[3] = "http://www.unityoforoville.org/images/contacticon-on.gif";
	image_url[4] = "http://www.unityoforoville.org/images/sitemapicon-off.gif";
	image_url[5] = "http://www.unityoforoville.org/images/sitemapicon-on.gif";
	
	var i = 0;
	for(i=0; i<=5; i++) // this is the number of images in the array minus 1
	preload_image_object.src = image_url[i];
	
}
    
//  End -->