<!-- Begin
// Type the number of images you are rotating.

NumberOfImagesToRotate = 11;

// Specify the first and last part of the image tag. 

FirstPart = '<img src="../../../images/header/header';
LastPart = '.jpg" height="100" width="550" align="absmiddle">';

function printImage() {
var r = Math.ceil(Math.random() * NumberOfImagesToRotate);
document.write(FirstPart + r + LastPart);
}
// End -->

