// FOOTER QUOTE ROTATIONS
var quotations = new Array()
quotations[0]= "<h4>&quot;Thank you for everything!  It was the best workshop I have ever attended and I think you should write a cookbook.&quot;</h4>"
quotations[1]= "<h4>&quot;...the most idyllic and indulgent six days I have ever had!  Julie Arkell is indeed an inspirational teacher...&quot;</h4>"
quotations[2]= "<h4>&quot;Your warm and wondrously charming hospitality gave us the most delightful break. Indeed it is paradise.&quot;</h4>"
function display()
{
a=Math.floor(Math.random()*quotations.length)
document.getElementById('quotation').innerHTML=quotations[a]
setTimeout("display()",5000)
}
