//image rotation created on April 5, 2006 
function randomRotate()
{
 num=backgroundImage.length;
 incr=Math.floor(Math.random()*num);
 document.open();
 document.write("<div id='imageSpecialBox' style='background-image: url(" + backgroundImage[incr] + "); '><div id='imageSpecialBoxBackground'><div id='topRightSpecialCorner'>&nbsp; </div><div id='topLeftSpecialCorner'>&nbsp; </div></div></div><div id='columnSpecialText'>" + quoteText[incr] + "</div><div id='bottomSpecialBox'><div id='bottomSpecialRightCorner'>&nbsp; </div><div id='bottomSpecialLeftCorner'>&nbsp; </div></div>");
document.close();
}
