var quotations = new Array()
quotations[0]= "<p>Kim Ratcliffe clinics to be held on 3rd and 4th February 2012. More details by following Clinics from the menu."
quotations[1]= "<p>Check out our classifieds for details of horses and tack for sale and local events."
quotations[2]= "<p>Next Affiliated Dressage competition to be held on Sunday 4th March 2012."
quotations[3]= "<p>Next Unaffiliated Dressage competition in the 2011/12 series to be held on Sunday 25th March 2012."
quotations[4]= "<p>Pippa Childerhouse clinic to be held on Sunday 22nd January 2012. More details by following Clinics from the menu."
var Qtotal = quotations.length
var Qcount=(Math.floor(Math.random()*Qtotal))
var Qtime=4500

function display()
{
document.getElementById('quotation').innerHTML=quotations[Qcount]
Qcount=Qcount+1
if (Qcount==Qtotal) {
Qcount=0
setTimeout("display()",Qtime)}
else {
setTimeout("display()",Qtime)}
}
