var el="testimonials";
var bgimg=new Array("images/quote2.gif", "images/quote3.gif", "images/quote4.gif", "images/quote5.gif");
var random=Math.round((bgimg.length-1)*Math.random());var cssStr="#"+el+" { background: url("+bgimg[random]+") no-repeat top left } ";
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);