<!-- Montana Jack's ATV Outpost & Supply
//
// Type the number of images you are rotating.

NumberOfImagesToRotate = 14;

// Specify the first and last part of the image tag. 

FirstPart = '<img src="randomize/steep_winching';
LastPart = '.jpg" height="572" width="600" border=0>';

function printImage() {
var r = Math.ceil(Math.random() * NumberOfImagesToRotate);
document.write(FirstPart + r + LastPart);
}
//-->