<!--
// 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.fitnessandfreebies.com/genf20.html",
"http://www.bellybytes.com/fightfat/hoodia/hoodia.html", 
"http://www.therabreath.com/a/3045/ebook.asp"
);

image = new initArray(
"http://affiliates.roaringtiger.com/images/banners/HD/7-468x80.gif",
"http://www.vitabase.com/images/relationships/leaderboard0207.jpg",
"http://www2.sellhealth.com/2/genf20_horizontal2.gif",
"http://banners.moreniche.com/show.php?id=7729&w=128221&s=141&e=gif", 
"http://easyrecipecollection.com/images/plain1.gif"
);

text = new initArray(
"Lose Weight",
"Vitabase Low Cost Supplements",
"GenF20 Human Growth Hormones",
"Unique Hoodia", 
"Free Online Breath Test"
);

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>');

//-->