
var quotations = new Array()
quotations[0]= "House clearance service available"
quotations[1]= "Litter patrol service available"
quotations[2]= "Commercial and domestic cleaning plus landlord support services"
quotations[3]= "Proven track record for high standards and cleanliness"
quotations[4]= "Competitively priced professional service"

function display()
{
a=Math.floor(Math.random()*quotations.length)
document.getElementById('changingTextPanel').innerHTML=quotations[a]
setTimeout("display()",6000)
}
