<!-- // original content taken from Nic's JavaScript Page with permission
// lack of these three lines will result in copyright infringment
// made by: Nic's JavaScript Page - http://www.javascript-page.com 
//                         Images                                  -->

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];
  }
}

text = new initArray(
"&quot;The bible of the stately house visitor to Britain&quot; - The British Tourist Authority",
"&quot;Hudson's ... not just excellent, it is indispensable&quot; - Simon Jenkins, The Times",
"&quot;We could not work without it&quot; - Jeremy Switzer, Page &amp; Moy Ltd (travel agents)",
"&quot;... an essential companion for enthusiasts of architecture and gardening ...&quot; - Country Life",
"&quot;Hudson's ... don't leave home without it&quot; - Barbara Ballard, Travellady magazine USA"
);


var currentdate = new Date();
var core = currentdate.getSeconds() % text.length;
var rantext  = text[core];

document.write(rantext);

