/* -----------------------------------------------
   Image Preloader - v.1.1
   (c) 2007 www.haan.net
   contact: jeroen@haan.net
   You may use this script but please leave the credits on top intact.
   Please inform us of any improvements made.
   When usefull we will add your credits.
  ------------------------------------------------ */

<!--

function preload()
{
	var brochure = new Array();

	var pics = preload.arguments;

	var dir = '/images/'

	for(i=0;i<pics.length;i++)
	{
		brochure[i] = new Image();

		brochure[i].src = dir + pics[i] + '.gif';

		// uncomment next line to test stuff, click OK to continue loop and cancel to break
		// if(!confirm(brochure[i].src)) break;
	}
}
// call the function with the list of images (unique part of names)
window.onload = function()
{
	preload('navDealers-over','navDrivers-over','navFleets-over','navCompanyInfo-over','navForSale-over');
}

//-->