<!-- Copyright 2002 Bontrager Connection, LLC
//
// Type the number of images you are rotating.

NumberOfImagesToRotate = 12;

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

FirstPart = '<img src="http://www.metal-rules.com/interface/top_banner_';
LastPart = '.jpg" height="180" width="950" border="0">';

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