// JavaScript Document

<!-- Begin
 
// To add more image files, continue with the
// same naming convention and increase noImages.
 
var noImages = 4
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 -->
