// JavaScript Documentvar img_rnd = new Array ("r1.gif", "r2.gif", 

//
// Type the number of images you are rotating.

numimg = 16;

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

FirstPart = '<img src="exhibit/m/splash/splash';
LastPart = '.jpg">';

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