// JavaScript Document

var theImages = new Array() 

theImages[0] = '/images/testimonials/testimonial_01.gif'
theImages[1] = '/images/testimonials/testimonial_02.gif'
theImages[2] = '/images/testimonials/testimonial_03.gif'
theImages[3] = '/images/testimonials/testimonial_04.gif'
theImages[4] = '/images/testimonials/testimonial_05.gif'
theImages[5] = '/images/testimonials/testimonial_06.gif'
theImages[6] = '/images/testimonials/testimonial_07.gif'
theImages[7] = '/images/testimonials/testimonial_08.gif'
theImages[8] = '/images/testimonials/testimonial_09.gif'
theImages[9] = '/images/testimonials/testimonial_10.gif'
theImages[10] = '/images/testimonials/testimonial_11.gif'
theImages[11] = '/images/testimonials/testimonial_12.gif'
theImages[12] = '/images/testimonials/testimonial_13.gif'
theImages[13] = '/images/testimonials/testimonial_14.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 showImage(){
document.write('<img src="'+theImages[whichImage]+'" border="0" alt="" width="324" height="249" />');
}