// Set up the image files to be used.
var theImages = new Array() // do not change this

theImages[0] = '/img/testimonials/castlesT.gif'
theImages[1] = '/img/testimonials/rainbowT.gif'
theImages[2] = '/img/testimonials/chouchouteT.gif'
theImages[3] = '/img/testimonials/elsaT.gif'
theImages[4] = '/img/testimonials/chiroT.gif'
theImages[5] = '/img/testimonials/talentT.gif'
theImages[6] = '/img/testimonials/lunchT.gif'
theImages[7] = '/img/testimonials/rfrT.gif'
theImages[8] = '/img/testimonials/layaliT.gif'
theImages[9] = '/img/testimonials/sculptedT.gif'
theImages[10] = '/img/testimonials/primaryT.gif'
theImages[11] = '/img/testimonials/homesparkleT.gif'
theImages[12] = '/img/testimonials/cityuniT.gif'
theImages[13] = '/img/testimonials/htnT.gif'

// do not edit anything below this line

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]+'">');
}
