<!--
// 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/Product_Sections_Sparklers_7.html",
"http://www.madaboutjewellery.com/acatalog/Product_Sections_Swarovski_80.html",
"http://www.madaboutjewellery.com/acatalog/Product_Sections_Bracelets_3.html"



);
image = new initArray(
"http://www.madaboutjewellery.com/acatalog/big_bangles_model.jpg",
"http://www.madaboutjewellery.com/acatalog/swarovski_rocks_130.jpg",
"http://www.madaboutjewellery.com/acatalog/model_bracelets_130.jpg"



);
text = new initArray(
"Check out this intriquing magnetic jewellery - click here...",
"Click here for our fabulous Swarovski Bracelets",
"Click here for our large collection of Bracelets"



);
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>');
//-->
