// JavaScript Document
var theImages = new Array();
				
				theImages[0] = site_Url+'r/images/00.jpg';
				theImages[1] = site_Url+'r/images/01.jpg';
				theImages[2] = site_Url+'r/images/02.jpg';
				theImages[3] = site_Url+'r/images/03.jpg';
				theImages[4] = site_Url+'r/images/04.jpg';
				theImages[5] = site_Url+'r/images/05.jpg';
				theImages[6] = site_Url+'r/images/06.jpg';
				theImages[7] = site_Url+'r/images/07.jpg';
				theImages[8] = site_Url+'r/images/08.jpg';
				theImages[9] = site_Url+'r/images/09.jpg';
				theImages[10] = site_Url+'r/images/10.jpg';
				theImages[11] = site_Url+'r/images/11.jpg';
				theImages[12] = site_Url+'r/images/12.jpg';
				theImages[13] = site_Url+'r/images/13.jpg';
				theImages[14] = site_Url+'r/images/14.jpg';
				theImages[15] = site_Url+'r/images/15.jpg';
				
				var j = 0
				var p = theImages.length;
				var preBuffer = new Array()
				for (i = 0; i < p; i++){
					preBuffer[i] = new Image();
					preBuffer[i].src = theImages[i];
				}
				
				var whichImage = Math.round(Math.random()*(p-1));
				function showImage(){
					document.write('<img alt="" width=801 src="' + theImages[whichImage] + '" />');
				}
				
				showImage();