//image rotation created on April 5, 2006 
function mastRotate()
{
 num=imgArray.length;
 incr=Math.floor(Math.random()*num);
 document.open();
 document.write("<img src='files/structure/" + imgArray[incr] + "'/>"); 
document.close();
}
