// JavaScript Document

//
// Type the number of images you are rotating.

NumberOfImagesToRotate = 19;

// Specify the first and last part of the image tag. 
	
FirstPart = '<a href="about_testimonials.htm"><img src="images/random/index/quote';
LastPart = '.gif" height="200" width="318" border="0"></a>';

function printImage() {
var r = Math.ceil(Math.random() * NumberOfImagesToRotate);
document.write(FirstPart + r + LastPart);
}
//-->