<!--
// 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://www.shareasale.com/r.cfm?b=260436&amp;u=1497&amp;m=29544&amp;urllink=&amp;afftrack=",  
"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://www.shareasale.com/image/29544/ruths-125x125-15off.gif",  
"http://banners.moreniche.com/show.php?id=8864&w=128221&s=157&e=gif"
);

text = new initArray(
"Unique Hoodia",
"Slimweight Patch",
"Gourmet Brownies", 
"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>');

//-->
