<!-- // 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];
  }
}
link = new initArray(


);


image = new initArray(
"http://www.hudsonsguide.co.uk/images/interior.jpg",
"http://www.hudsonsguide.co.uk/images/topiary_front.jpg",
"http://www.hudsonsguide.co.uk/images/gardenwalk.jpg",
"http://www.hudsonsguide.co.uk/images/portraits.jpg",
"http://www.hudsonsguide.co.uk/images/michaels_mount.jpg",
"http://www.hudsonsguide.co.uk/images/levens_hall.jpg",
"http://www.hudsonsguide.co.uk/images/ivy-arch.jpg",
"http://www.hudsonsguide.co.uk/images/dunrobin_knot.jpg",
"http://www.hudsonsguide.co.uk/images/chatsworth_hedge.jpg"
);

text = new initArray(
"Mellerstain House, Borders",
"Packwood House, Warwickshire",
"Hestercombe Gardens, Somerset",
"Grimsthorpe Castle, Lincolnshire",
"St Michael's Mount, Cornwall",
"Levens Hall, Cumbria",
"Cragside, Northumberland",
"Dunrobin Castle, Highlands & Skye",
"Chatsworth, Derbyshire"
);

height = new initArray(
"160",
"160",
"160",
"159",
"160",
"160",
"157",
"160",
"160"
);

width = new initArray(
"200",
"200",
"200",
"200",
"200",
"200",
"220",
"200",
"200"
);


var currentdate = new Date();
var core = currentdate.getSeconds() % text.length;
var imgheight  = height[core];
var imgwidth  = width[core];
var ranlink  = link[core];
var rantext  = text[core];
var ranimage = image[core];

document.write('<img src=\"' +ranimage+ '\" align="center" hspace="0" border="0" height=\"'+imgheight+'\" width=\"'+imgwidth+'\" alt=\"'+rantext+'\"><br><font face="Arial, Helvetica, sans-serif">' +rantext+ '</font></a>');








