//image rotation created on March 29, 2006 
function image_Rotate()
{ 
	arrayNumber = imageArray5.length; 
		selectNumber = Math.floor(Math.random() * arrayNumber); 
	document.open();
		document.write("<div id='mastMainPhoto' style='background-image: url(/images/index/image05_rotation/"  + imageArray5[selectNumber] + "); '>");
		document.write("<div id='mastRightSet'>");
		document.write("<div id='mastRight1' style='background-image: url(/images/index/image02_rotation/"  + imageArray4[selectNumber] + "); '>&nbsp;</div>");
		document.write("<div id='mastRight2' style='background-image: url(/images/index/image03_rotation/"  + imageArray3[selectNumber] + "); '>&nbsp;</div>");
		document.write("</div>");
		document.write("<div id='mastRight3' style='background-image: url(/images/index/image04_rotation/"  + imageArray2[selectNumber] + "); '> &nbsp; </div>");
		document.write("</div>");
	document.close();
}
