//<!-- Copyright 2002 Bontrager Connection, LLC
//
// Type the number of images you are rotating.

ImagesToRotate = 49;

// Specify the first and last part of the image tag. 

imgFirstPart = '<img src="/Images/Headers/header_img';
imgLastPart = '.jpg" hspace="175" />';

function load_head_Image() {
var r = Math.ceil(Math.random() * ImagesToRotate-1);
document.write(imgFirstPart + r + imgLastPart);
}
//-->