	
			var theFrontImages = new Array()
			
			theFrontImages[0] = 'front01.jpg'
			theFrontImages[1] = 'front02.jpg'
			theFrontImages[2] = 'front03.jpg'
			theFrontImages[3] = 'front04.jpg'
			theFrontImages[4] = 'front05.jpg'
			theFrontImages[5] = 'front06.jpg'
			theFrontImages[6] = 'front07.jpg'
			theFrontImages[7] = 'front08.jpg'
			theFrontImages[8] = 'front09.jpg'
			theFrontImages[9] = 'front10.jpg'
			theFrontImages[10] = 'front11.jpg'
			theFrontImages[11] = 'front12.jpg'
			theFrontImages[12] = 'front13.jpg'
			theFrontImages[13] = 'front14.jpg'
			theFrontImages[14] = 'front15.jpg'
			theFrontImages[15] = 'front16.jpg'
			theFrontImages[16] = 'front17.jpg'
			theFrontImages[17] = 'front18.jpg'
			theFrontImages[18] = 'front19.jpg'
			theFrontImages[19] = 'front20.jpg'
			theFrontImages[20] = 'front21.jpg'
			theFrontImages[21] = 'front22.jpg'
			theFrontImages[22] = 'front23.jpg'
			theFrontImages[23] = 'front24.jpg'
			theFrontImages[24] = 'front25.jpg'
			theFrontImages[25] = 'front26.jpg'
			theFrontImages[26] = 'front27.jpg'
			theFrontImages[27] = 'front28.jpg'
			theFrontImages[28] = 'front29.jpg'
			theFrontImages[29] = 'front30.jpg'
			theFrontImages[30] = 'front31.jpg'
			theFrontImages[31] = 'front32.jpg'
			theFrontImages[32] = 'front33.jpg'
			theFrontImages[33] = 'front34.jpg'
			theFrontImages[34] = 'front35.jpg'
			theFrontImages[35] = 'front36.jpg'

			var j = 0
			var p = theFrontImages.length;
			var preBuffer = new Array()
			for (i = 0; i < p; i++){
			   preBuffer[i] = new Image()
			   preBuffer[i].src = theFrontImages[i]
			}
			var whichImage = Math.round(Math.random()*(p-1));
			function showFrontImage(){
			document.write('<div id="theFrontImage" style="background-image: url(images/index/'+theFrontImages[whichImage]+');width:790px:height:525px;background-repeat:no-repeat;">');
			}
