/* This JavaScript (Random Quotes) developed by Scott ClarkThe Source is available at http://www.clarksco.com/blog/Copyright 2005 Clark Consulting */// Math that sets the number of the quote to be displayedvar num_of_quotes = 6;quotes = Math.floor (num_of_quotes * Math.random());// Database of Quotesif (quotes==0) {name="&mdash; Tom B.";body="I was very impressed with the conversation I had with Steve. His knowledge and professionalism to the questions that I asked were direct and to the point.";}if (quotes==1) {name="&mdash; Paul G.";body="What a pleasure it was to meet Steve. The honesty, integrity and the leadership skills that Steve possess will be an asset to the Town.";}if (quotes==2) {name="&mdash; Jeffrey D.";body="Steve is the guy who can get the job done!";}if (quotes==3) {name="&mdash; Michael S.";body="I was very impressed with the conversation I had with Steve. His answers to the questions that I asked were direct and to the point.";}if (quotes==4) {name="&mdash; Diane L.";body="Steve is a great person. His dedication to the people of Watertown as well as his knowledge and experience convinced me that he is the right person to represent Disctric C.";}if (quotes==5) {name="&mdash; Ann T.";body="I like Steve's vision of Watertown's future. He took the time to explain things to me and how he sees Watertown's future.";}// Outputs the HTML to your web page.document.write(''+ body +'<br />');document.write('' + name + '');