/* This function generates a random number to be used later to call random text/images when the page is reloaded. */function getRandom(maxNum){if (Math.random && Math.round)	{    var ranNum= Math.round(Math.random()*(maxNum-1));    ranNum+=1;    return ranNum;	}else	{	today=new Date();	hours=today.getHours();	mins=today.getMinutes();  	secn=today.getSeconds();	if (hours==19)		{		hours=18;		}	var ranNum= (((hours+1)*(mins+1)*secn)%maxNum)+1;	return ranNum;	}}/* This section writes text/images from an array when called from the body of the page. *//* Adjust the maxContent value below to match the number of items in the array. */var maxContent=11;var whichContent=getRandom(maxContent);whichContent--;/* Define the array here. */var Content=new Array(maxContent);Content[0]="<img src='images/rightcol/1rotate.jpg' width='204' height='371' class='bordertop'>"Content[1]="<img src='images/rightcol/2rotate.jpg' width='204' height='371' class='bordertop'>"Content[2]="<img src='images/rightcol/3rotate.jpg' width='204' height='371' class='bordertop'>"Content[3]="<img src='images/rightcol/4rotate.jpg' width='204' height='371' class='bordertop'>"Content[4]="<img src='images/rightcol/5rotate.jpg' width='204' height='371' class='bordertop'>"Content[5]="<img src='images/rightcol/6rotate.jpg' width='204' height='371' class='bordertop'>"Content[6]="<img src='images/rightcol/7rotate.jpg' width='204' height='371' class='bordertop'>"Content[7]="<img src='images/rightcol/8rotate.jpg' width='204' height='371' class='bordertop'>"Content[8]="<img src='images/rightcol/10rotate.jpg' width='204' height='371' class='bordertop'>"Content[9]="<img src='images/rightcol/11rotate.jpg' width='204' height='371' class='bordertop'>"Content[10]="<img src='images/rightcol/12rotate.jpg' width='204' height='371' class='bordertop'>"/* Write the content to the document. */document.write(Content[whichContent]);