// Advanced Random Quotes Start

  var q,quote= new Array();
  quote[quote.length]="<p>Kim has delivered a high class of property management with excellent tenants who are well briefed on acceptable standards.</p><p class='quote-name'>- A Adams<br /><strong>Property Investor</strong></p><img src='images/quote-close.gif' align='right' /><cite></cite>";
  quote[quote.length]="<p>As a landlord, Kim has been great, any maintenance issues are dealt with really quickly.</p><p class='quote-name'>- Y Collins<br /><strong>Tenant</strong></p><img src='images/quote-close.gif' align='right' /><cite></cite>";
  q=parseInt(Math.random()*quote.length);
  q=(isNaN(q))?0:q;
    document.write(quote[q]);

// Advanced Random Quotes End