<!--
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];
  }
}

testimony = new initArray(
"Excellent service, great products, what more can I say",
"The service was second to none, great products, excellent service",
"The service was second to none, great products, excellent service"
);

bywho = new initArray(
"The Kitchen Shop",
"Ink world",
"The Bus Company"
);

var currentdate = new Date();
var core = currentdate.getSeconds() % testimony.length;
//var ranlink  = link[core];
var rantestimony = testimony[core];
var ranbywho  = bywho[core];

document.write('<div align=\"left\" class=\"copyright\">&quot;'+rantestimony+'&quot;</div><div align=\"right\" class=\"copyright\"><strong>'+ranbywho+'</strong></div>');
//-->
