<!-- Begin
// Added to show favourite testimonial around 25% of the time - otherwise show one of the others at random
var favImage = Math.round(Math.random()*4);
if (favImage == 1) {
document.write('<img src="../images/testimonial-fav.gif" alt="What our clients say..." title="What our clients say..." border="0"><br/>');
}
else {

// To add more image files, continue with the
// same naming convention and increase noImages.

var noImages = 20
var whichImage = Math.round(Math.random()*(noImages));
var x = 0
// To show more/less than 3 testimonials change the "x < 3" in the line below
for (x = 0; x < 1; x++)
{
whichImage++
if (whichImage > noImages) {
whichImage = 1
}
document.write('<img src="../images/testimonial'+[whichImage]+'.gif" alt="What our clients say..." title="What our clients say..." border="0"><br/>');
}
}
//  End -->

