//image rotation created on April 5, 2006 
 num=backgroundImage.length;
 incr=Math.floor(Math.random()*num);


function ImageRotate()
{
 document.open();
 document.write("<img src='/academics/images/"+backgroundImage[incr]+"' alt='' />");
document.close();
}