// Advanced Random Quotes Start

  var q,quote= new Array();
  quote[quote.length]="<p>&quot;Steph behaved professionally at all times and ... approaches everything with a smile.&quot;</p><p style='margin-top: 3px;'><a href='contented-websites.html'>See more testimonials</a></p>";
  quote[quote.length]="<p>&quot;...a work ethic of the very highest standard ... her professional conduct shone through.&quot;</p><p style='margin-top: 3px;'><a href='contented-websites.html'>See more testimonials</a></p>";
  quote[quote.length]="<p>&quot;Her vast knowledge was reassuring... and produced pleasing results promptly.&quot;</p><p style='margin-top: 3px;'><a href='contented-websites.html'>See more testimonials</a></p>";
  quote[quote.length]="<p>&quot;...you obviously have not only a gift for writing but getting &quot;inside&quot; the business.&quot;</p><p style='margin-top: 3px;'><a href='contented-websites.html'>See more testimonials</a></p>";
  q=parseInt(Math.random()*quote.length);
  q=(isNaN(q))?0:q;
    document.write(quote[q]);

// Advanced Random Quotes End