// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================


//.. testimonials
var theImagesd = new Array()
theImagesd[0] = 'photos3/testimonial-01.gif'
theImagesd[1] = 'photos3/testimonial-02.gif'
theImagesd[2] = 'photos3/testimonial-03.gif'
theImagesd[3] = 'photos3/testimonial-04.gif'
theImagesd[4] = 'photos3/testimonial-06.gif'

var j = 0
var p = theImagesd.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImagesd[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImaged(){
document.write('<img src="'+theImagesd[whichImage]+'">');
}
