/* Rotating Image Script for Index Page */

var el="quotes";
var bgimg=new Array("http://www.divorcedoneright.com/images/quotebg.jpg", "http://www.divorcedoneright.com/images/quotebg2.jpg", "http://www.divorcedoneright.com/images/quotebg3.jpg");
var random=Math.round((bgimg.length-1)*Math.random());
var cssStr="#"+el+" { background: url("+bgimg[random]+") no-repeat bottom right } ";
var style=document.createElement("style");
style.setAttribute("type","text/css");
if(style.styleSheet)
{style.styleSheet.cssText=cssStr;}
else
{var cssText=document.createTextNode(cssStr);style.appendChild(cssText);}
document.getElementsByTagName("head")[0].appendChild(style);