// JavaScript Document

//This preloads all the images specified.
//Put the most commonly used images first in the imgArray.

function preload() {
	imgArray = new Array(
	'http://site06.buildersonline.info/images/tripbanner.gif',
	);
	
	imagesCache = new Array ();

	for (i=0; i<imgArray.length; i++) 
	{
		imagesCache[i] = new Image;
		imagesCache[i].src = imgArray[i];
	}
}