//image rotation created on April 5, 2006 
function imageRotate()
{
 num=imgArray.length;
 incr=Math.floor(Math.random()*num);
 document.open();
document.write("<div id='layerNavigation' style='background-image: url(" + imgArray[incr] + "); '>&nbsp;</div>");
document.close();
}
