<!--
// 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://www.bellybytes.com/fightfat/hoodia/hoodia.html",
"http://easyrecipecollection.com/slimpatch.html",
"http://track.moreniche.com/hit.php?w=128221&s=178&c=9996",  
"http://www.bellybytes.com/fightfat/phen375/"
);

image = new initArray(
"http://banners.moreniche.com/show.php?id=7717&w=128221&s=141&e=gif",
"http://bellybytes.com/recipe/slimpatch.jpg",
"http://banners.moreniche.com/show.php?id=12078&w=128221&s=178&e=gif",  
"http://banners.moreniche.com/show.php?id=8864&w=128221&s=157&e=gif"
);

text = new initArray(
"Unique Hoodia",
"Slimweight Patch",
"Advanced Health LTD", 
"Phen375 Fat Burner"
);

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>');

//-->