var quotations = new Array()
quotations[0]= "&quot;With the press of a single button I can open my garage door, light a path to my house and turn off my security system&quot;"
quotations[1]= "&quot;Smart lighting turns the lights on and off as I enter and exit rooms or sets the perfect light level to match my mood&quot;"
quotations[2]= "&quot;And my Cottage... no longer do I have to send someone to check on the cottage. I receive instant notice the moment there is activity. I can turn on the lights and get the cottage ready right from my home&quot;"
quotations[3]= "&quot;The automated life used to be the exclusive realm of the rich. Now home automation is coming to a subdivision near you&quot;"

function display()
{
a=Math.floor(Math.random()*quotations.length)
document.getElementById('quotation').innerHTML=quotations[a]
setTimeout("display()",15000)
}

