aRandomQuote = new Array()
aRandomQuote[1] = new Array("An excellent service. Thoroughly professional with an eye for detail and superb communication skills.","Mr J Hawkesby (Media Celebrity)");
aRandomQuote[2] = new Array("I would rate them as the best in the business.","Mr I E Calderwood (Executive Chairman, Jonmer Group of Companies)");
aRandomQuote[3] = new Array("Haines Planning has assisted our New Zealand roll-out with a 100% success rate in obtaining often difficult resource consents, all on a non-notified basis.","Richard Champion (General Manager Property, Harvey Norman, Australia)");

var quoteNum=Math.floor(Math.random()*aRandomQuote.length)
while (quoteNum==0) {
  var quoteNum=Math.floor(Math.random()*aRandomQuote.length)
}

var quoteStr = aRandomQuote[quoteNum][0] + ' <span class="quoteAuthor">' + aRandomQuote[quoteNum][1] + '</span>';

