/* PRELOADS ALL SITE IMAGES. 
Script will do nothing once images are cached 
(not a performance issue to have it on all pages)*/


function preload() {
	//alert('preloading');
	if ( isgoodBrowser ) {
	var picNames = new Array();
		picNames[0]="images/buttonGetFlash.gif";
		picNames[1]="images/spacer.gif";
			
		//NOTE:
		//not alphabetical beyond this point (add images as necessary)		
	preloadImages(picNames);
	}
}


function preloadImages(picNames) {
	for(i=0; i<picNames.length; i++){
   		var pic = new Image();		
		pic.src = picNames[i];
	}
}


















