<!-- Begin

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

var noImages = 26
var whichImage = Math.round(Math.random()*(noImages));
var x = 0
// To show more/less than 2 testimonials change the "x < 2" in the line below
for (x = 0; x < 2; x++)
{
whichImage++
if (whichImage > noImages)
{
whichImage = 1
}
document.write('<img src="images/Testimonial'+[whichImage]+'.gif" alt="What Green Valley customers say..." title="What Green Valley customers say..." border="0"><br/>');
}

//  End -->

