//Random Testimonial Generator
//http://www.holiben.com/

quote = new Array()

quote[0] = ("Another lovely holiday!<br><br>Everyone's so friendly!<br><br>Thanks very much!!<br><br>Beverly & Maureen")
quote[1] = ("Both holidays there have been the best of my life!<br><br>Thank you for giving me and my family wonderful holidays in the sun.<br><br>Love Anna")
quote[2] = ("We had a wonderful 3 week stay.<br><br>Our first trip to Spain.<br><br>We all had an amazing time.<br><br>Maggie")
//quote[3] = ("")
//quote[4] = ("")
//quote[5] = ("")
//quote[6] = ("")


function generateQuote()
{
thenum = quote.length
thenum = new Date().getSeconds()%thenum
document.write("<center><table width=120><tr><td><font size=1>"+quote[thenum]+"</font></td></tr><tr><td align=center><font size=1><br><a href=\"testimonials.html\">More Testimonials</a></font></td></tr></table></center>")
}

