var quotations = new Array()
quotations[0]= "<br />&#34;This has been a delightful year in Jacksonville and you all deserve a lot of the credit for that. We appreciate your professionalism, sincerity and can do attitude. I didn't have to worry about the job getting done.&#34; <br/>&nbsp;<br/><strong>Billy Graham Crusade</strong>"
quotations[1]= "<br />&#34;There hasn&#39;t been one time where I have asked for assistance where their team hasn&#39;t came through for me! Everyone who has stayed at one of the Corporate Suite Shoppe properties have been overwhelmingly pleased with their accommodations!<br />&nbsp;<br />Corporate Suite Shoppe will be the first place we call for their lodging needs.&#34; <br />&nbsp;<br /><strong>Atlantic Marine</strong>"
quotations[2]= "<br />&#34;Corporate Suite Shoppe works proactively to make sure that all needs are covered. Their explanations and knowledge is top-notch and allows the referral of business to be a smooth transaction. I don&#39;t have to be concerned that my candidates will be left in the dark. CSS is a great company that will continue to be a major asset to our business as we grow.&#34; <br />&nbsp;<br /><strong>The CSI Companies</strong>"
function display()
{
a=Math.floor(Math.random()*quotations.length)
document.getElementById('quotation').innerHTML=quotations[a]
setTimeout("display()",9000)
}
