<!--

// Type the number of images you are rotating.

NumberOfImagesToRotate = 6;

// Specify the first and last part of the image tag. 

FirstPart = '<img border="0" style="border: 1 solid #334825" src="imgs/homerotate/summer/french_horn_alton';
LastPart = '.jpg" alt="See more photos of the French Horn, Alton - click here!">';

function printImage() {
var r = Math.ceil(Math.random() * NumberOfImagesToRotate);
document.write(FirstPart + r + LastPart);
}

//-->