﻿// Handle the automatic rotation of background images.

var numImages = 5;  // Change this to the total number of images.

if (!BGImage) { var BGImage = "Images/bg-top-" + Math.ceil((Math.random()*100)%numImages) + ".jpg"; }

addLoadEvent(function() {
if (document.getElementById) { // Netscape 6 & MSIE 5
	document.getElementsByTagName("body")[0].style.background =
		"white url('" + BGImage + "') no-repeat fixed top right";
}});