////// DO NOT EDIT THIS FILE ///////
///// Unless you have read and understood the notes ////



NumberOfImagesToRotate = 23;
FirstPart = '<img src="images/rotate/pic_';
LastPart = '.jpg" height="200" width="760">';

function printImage1() {
var r = Math.ceil(Math.random() * NumberOfImagesToRotate);
document.write(FirstPart + r + LastPart);
}

