// JavaScript Document -PreloadCommArtImages.JS 
	
	// Add new images at end of array. Film Strip defines image to display
	var imgs = new Array("2-Commercial/BrchRoseGarden02-320x250.jpg",
						"2-Commercial/BrchRoseGarden01-320x250.jpg",
						"2-Commercial/BrchAuroraMail10-280x550.jpg",
						"2-Commercial/BrchAuroraMail20-280x544.jpg",
						"2-Commercial/BrchJPCFolderBot01-320x243.jpg",
						"2-Commercial/BrchJPCFolderTop02-320x250.jpg",
						"2-Commercial/BrchArborImage01-320x250.jpg",
						"2-Commercial/BrchArborImage02-320x242.jpg",
						"2-Commercial/BrchFoxRiverBank02-280x356.jpg",
						"2-Commercial/BrchFoxRiverBank01-280x365.jpg",
						"2-Commercial/BrchFoxRiverBank03-540x405.jpg",
						
						// ------------------------------------------------
						
						"2-Commercial/LogoMiller-300x275.jpg",
						"2-Commercial/LogoBranson-300x121.jpg",
						"2-Commercial/LogoPartners-250x143.jpg",
						"2-Commercial/LogoRVS2010-300x197.jpg",   //new 2-2-10 Replaced 2009
						"2-Commercial/LogoWPE-200x166.jpg",
						"2-Commercial/LogoRiverCityAuto-300x106.jpg",
						"2-Commercial/LogoSommer-320x110.jpg",
						"2-Commercial/DsgnCentralATV-400x254.jpg",
						"2-Commercial/DsgnCrossTowneEM-300x400.jpg",
						"2-Commercial/DsgnCrossTowne-300x200.jpg",
						"2-Commercial/DsgnHarmony-600x280.gif",
						"2-Commercial/DsgnStMarysNew-540x396.jpg",

						// ------------------------------------------------

						"2-Commercial/DsgnQueensAuto-600x353.jpg",
						"2-Commercial/DsgnGrounded02-290x290.jpg",
						"2-Commercial/DsgnGrounded01-290x290.jpg",
						"2-Commercial/DsplDiabetes-300x500.jpg",
						"2-Commercial/DsplJPCEntry-320x228.gif",
						"2-Commercial/SignMangoldIns-457x235.jpg",
						"2-Commercial/SignWilsonMeats-350x500.jpg",

						// ------------------------------------------------
						
						"2-Commercial/LogoChocoBean-400x500.jpg",
						"2-Commercial/SignBBC001-540x404.jpg",
						"2-Commercial/SignSportsman'sFair001-565x412.gif",
						"2-Commercial/LogoVetsTerrace-600x230.jpg",
						"2-Commercial/BrchWilsonConcrete-540x418.jpg",
						"2-Commercial/LogoChocofest09-450x525.jpg",
						
						// ----------------------------------------- 
						"2-Commercial/LogoBrownsBBQ-540x405.jpg",
						"2-Commercial/BrchGiaBella01-600x388.jpg",  //New 2-1-10
						"2-Commercial/Scan01-360x240.jpg",          //New 2-2-10
						"2-Commercial/Scan02-360x240.jpg")          //New 2-2-10
		

	var preload = new Array();
	for ( var i=1; i<imgs.length; i++)
		{
			preload[i] = new Image();
			preload[i].src = imgs[i];		
		}


