// Alison Fielden & Co.
// 'Quote at Random' JavaScript
// Revision 1.03
// Last revised 14/05/2008
// © 2008 Ed Fielden

var quotes = new Array();

quotes[0] = '"Very helpful, efficient, uncomplicated and easy to get an appointment. Plus good value for money."';
quotes[1] = '"Better than I had expected, because of the friendly \'one to one\' basis of the negotiation and the other members [of staff] I met."';
quotes[2] = '"Courteous, not patronising, willing to work around my situation."';
quotes[3] = '"Recommended by a friend... Very easy to approach."';
quotes[4] = '"Always found you helpful and informative. All staff seemed very helpful and friendly."';
quotes[5] = '"You provide a great service at all times..."';
quotes[6] = '"If we had someone that was interested in purchasing a house we would suggest Alison Fielden."';
quotes[7] = '"Everyone at Alison Fielden &amp; Co. were polite and helpful throughout the sale and purchase of our properties."';
quotes[8] = '"I have been very happy with all dealings with Alison Fielden &amp; Co. and would not hesitate to use you again."';
quotes[9] = '"I found all members of staff that I met extremely helpful."';
quotes[10] = '"I have always found your help, advice and services excellent."';

function write_rqt() {
  var sec=new Date().getSeconds();
   for (n=0; n<sec; n++) {
     Math.random();
   }
  var selquote = Math.floor(Math.random()*(quotes.length))
;
  document.write('<span class="randquot">')
;
  document.write(quotes[selquote])
;
  document.write('<\/span>')
;
  return true;
}