<!--
var currentdate = 0;
var core = 0;

function initArray() {

this.length = initArray.arguments.length;
  for (var i = 0; i < this.length; i++) {
  this[i] = initArray.arguments[i];
  }
}

message = new initArray(
"Thank you for your hard work and enthusiasm in re vitalising our garden",
"A big thank you for all your hard work and vision that has gone in to making our garden look wonderful, I am very impressed with how you have sympathetically restored it and created a truly fantastic ambience",
"Thank you for creating a beautiful garden for me, I  love the 2 separate entertaining areas and the secrecy and tranquility the garden  now holds",
"Thank you so much for re designing my garden, I was so impressed  with how smoothly the job went, your vision has given me a tropical haven I never expected in such a small garden"
);

names = new initArray(
"Mr &amp; Mrs Pearson, Southport",
"Mr &amp; Mrs Mathews, Southport",
"Ms Cookson, Formby",
"Mr T Perry, Banks, Southport"
);

var currentdate = new Date();
var core = currentdate.getSeconds() % message.length;
var ranmessage  = message[core];
var ranname = names[core];

document.write('<p>&quot;' +ranmessage+ '&quot;</p><p class="align-right">- ' +ranname+ '</p>');
//-->