/* -----------------------------------------------
   Image Preloader - v.1.2
   (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 = arguments;

	var dir = '/images/img/img_'

	for(i=0;i<pics.length;i++)
	{
		brochure[i] = new Image();

		brochure[i].src = dir + pics[i] + '.jpg';

		// 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('1','2','3','4','5','6','7','8','9','10','11','12','13','14','15');
}

//-->