var photos2 = new Array() // do not change this
photos2[0] = 'images/tpfReview1.gif'
photos2[1] = 'images/tpfReview2.gif'
photos2[2] = 'images/tpfReview3.gif'
photos2[3] = 'images/tpfReview4.gif'
photos2[4] = 'images/tpfReview5.gif'
photos2[5] = 'images/tpfReview6.gif'
photos2[6] = 'images/tpfReview7.gif'
//photos2[5] = 'images/tpfReview6.gif'

var j = 0
var p = photos2.length;
var preBuffer = new Array()
for (i = 0; i < p; i++) {
   preBuffer[i] = new Image()
   preBuffer[i].src = photos2[i]
}
var whichImage = Math.round(Math.random()*(p-1));
var theImage = photos2[whichImage];

document.write('<img src="'+theImage+'" border="0" width="500" height="130" alt="Purple Fish Website Testimonial">');
