<SCRIPT>
<!--

/* This javascript should be placed between the <BODY> and </BODY> tags in the html document THIS IS A JAVASCRIPT TO ROTATE IMAGES ON A PAGE. EACH TIMES THE USER REFRESHES OR ENTERS THE PAGE, THE IMAGE WILL CHANGE. THIS PARTICULAR SCRIPT DIPLAYS AN AREA 455 WIDE X 100 HT. THIS AREA IS 3 IMAGES 150 X 100 IN A COLLAGE. THERE ARE 4 COLLAGES 455 X 100 THAT WILL BE RANDOMLY DISPLAYED
myPix is a variable pointing to the 4 collages
imgCt is the number of collages in the array

*/
myPix = new Array("images/professionals1.gif","images/professionals2.gif","images/professionals3.gif","images/professionals4.gif")
imgCt = myPix.length

function choosePic() {
	if (document.images) {
		randomNum = Math.floor
			((Math.random() * imgCt))
		document.myPicture.src = 
			myPix[randomNum]
	}
}
//-->
</SCRIPT>
/*this code goes in the body of html document where you are placing the random picture display. The spacer.gif should be a blank areay the same size as the pictures for initail load. 
*/

<body bgcolor=white onLoad="choosePic()">
<script language="JavaScript" type="text/JavaScript"></script> 
      <img src="../images/spacer.gif" width=455
	height=100 NAME="myPicture"> 
</body>