		var theImages = new Array();
		theImages[0] = 'images/testimonial1.gif';
		theImages[1] = 'images/testimonial2.gif';
		theImages[2] = 'images/testimonial3.gif';
		theImages[3] = 'images/testimonial4.gif';
		theImages[4] = 'images/testimonial5.gif';
		theImages[5] = 'images/testimonial6.gif';
		theImages[6] = 'images/testimonial7.gif';
		theImages[7] = 'images/testimonial8.gif';
		theImages[8] = 'images/testimonial9.gif';
		
		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 showTestimonial(){
			document.write('<img src="'+theImages[whichImage]+'" style="float:right;margin:23px 4px 0px 0px;">');
		}      

					  
					  

