// 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

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://easyrecipecollection.com/roaring-tiger.html",
"http://www.vitabase.com/r-just4you/default.aspx",
"http://www.bellybytes.com/zotrim-diet-supplement.html",
"http://www.fitnessandfreebies.com/secret-recipes.html",
"http://www.ganobrand.com/affiliates/id/14726_1_bid_11",
"http://easyrecipecollection.com/duty-free.html"
);

image = new initArray(
"http://affiliates.roaringtiger.com/images/banners/HD/13-468x60.gif",
"http://www.vitabase.com/images/relationships/banner0207.jpg",
"http://banners.moreniche.com/show.php?id=7976&w=128221&s=147&e=gif",
"http://www.bellybytes.com/images/rsn-ban1.jpg",
"http://www.ganobrand.com/affiliates/image.php?bid=11&mid=14726",
"http://www.dutyfreeaffiliates.com//Banners/banner_products.gif"
);

text = new initArray(
"Roaring Tiger Fast Weight Loss",
"Vitabase Making Health Simple",
"Zotrim Food Supplement",
"Secret Recipes",
"Healthy Coffee",
"Duty Free Depot"
);

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+ '\"><img src=\"'+ranimage+'\" border="0" alt=\"'+rantext+'\"></a>');