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