/* 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=20;
var whichContent=getRandom(maxContent);
whichContent--;

/* Define the array here. */
var Content=new Array(maxContent);
Content[0]="<img src='../images/inner/symp1.jpg' width='217' height='144'>"
Content[1]="<img src='../images/inner/symp2.jpg' width='217' height='144'>"
Content[2]="<img src='../images/inner/symp3.jpg' width='217' height='144'>"
Content[3]="<img src='../images/inner/symp4.jpg' width='217' height='144'>"
Content[4]="<img src='../images/inner/symp5.jpg' width='217' height='144'>"
Content[5]="<img src='../images/inner/symp6.jpg' width='217' height='144'>"
Content[6]="<img src='../images/inner/symp7.jpg' width='217' height='144'>"
Content[7]="<img src='../images/inner/symp8.jpg' width='217' height='144'>"
Content[8]="<img src='../images/inner/symp9.jpg' width='217' height='144'>"
Content[9]="<img src='../images/inner/symp10.jpg' width='217' height='144'>"
Content[10]="<img src='../images/inner/symp11.jpg' width='217' height='144'>"
Content[11]="<img src='../images/inner/symp12.jpg' width='217' height='144'>"
Content[12]="<img src='../images/inner/symp13.jpg' width='217' height='144'>"
Content[13]="<img src='../images/inner/symp14.jpg' width='217' height='144'>"
Content[14]="<img src='../images/inner/symp15.jpg' width='217' height='144'>"
Content[15]="<img src='../images/inner/symp16.jpg' width='217' height='144'>"
Content[16]="<img src='../images/inner/symp17.jpg' width='217' height='144'>"
Content[17]="<img src='../images/inner/symp18.jpg' width='217' height='144'>"
Content[18]="<img src='../images/inner/symp19.jpg' width='217' height='144'>"
Content[19]="<img src='../images/inner/symp20.jpg' width='217' height='144'>"




/* Write the content to the document. */
document.write(Content[whichContent]);
