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(
"http://www.tapestries-tapestry.com/tapestries/Bouquet-Flamand-1.htm",
"http://www.tapestries-tapestry.com/tapestries/Tree-Of-Life-45.htm",
"http://www.tapestries-tapestry.com/tapestries/Flora-46.htm",
"http://www.tapestries-tapestry.com/tapestries/King-Arthur-312.htm"
);

image = new initArray(
"http://www.tapestries-tapestry.com/productimages/small/1.jpg",
"http://www.tapestries-tapestry.com/productimages/small/45.jpg",
"http://www.tapestries-tapestry.com/productimages/small/46.jpg",
"http://www.tapestries-tapestry.com/productimages/stamp/King-Arthur.jpg"
);

text = new initArray(
"Bouquet Flamand",
"Tree of Life",
"Flora",
"King Arthur"
);

var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var ranlink  = link[core];
var ranimage = image[core];
var rantext  = text[core];

document.write('<a href=\"' +ranlink+ '\" target=\"_self\"><img src=\"'+ranimage+'\" border="0" alt=\"'+rantext+'\"></a><br><br>' +rantext+ '<br>');
