<!--
// original content taken from Nic's JavaScript Page with permission
// made by: Nic's JavaScript Page - http://www.javascript-page.com
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.madaboutjewellery.com/acatalog/posh_pearls.html",
"http://www.madaboutjewellery.com/acatalog/posh_pearls.html",
"http://www.madaboutjewellery.com/acatalog/posh_pearls.html",
"http://www.madaboutjewellery.com/acatalog/posh_pearls.html",
"http://www.madaboutjewellery.com/acatalog/posh_pearls.html"


);
image = new initArray(
"http://www.madaboutjewellery.com/acatalog/sidebar_posh_pearls1.jpg",
"http://www.madaboutjewellery.com/acatalog/sidebar_posh_pearls6.jpg",
"http://www.madaboutjewellery.com/acatalog/sidebar_posh_pearls7.jpg",
"http://www.madaboutjewellery.com/acatalog/sidebar_posh_pearls8.jpg",
"http://www.madaboutjewellery.com/acatalog/sidebar_posh_pearls9.jpg"


);
text = new initArray(
"Click here for Fabulous Freshwater Pearls",
"Click here for our fabulous range of Posh Pearls",
"Click here for irridescent individual pearl masterpieces",
"Click here for AAA Grade freshwater pearls from exotic places",
"Click here for classical pearls worn by Princess Grace and Audrey Hepburn"


);
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>');
//-->
