<!--
// 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.proshaperx.com/ct/21535?t=erc",
"http://www.genf20.com/ct/21535?t=erc",
"http://banners.moreniche.com/go.php?id=12293&w=128221&s=176", 
"http://banners.moreniche.com/go.php?id=13316&w=128221&s=181"
);

image = new initArray(
"http://easyrecipecollection.com/images/proshape200.jpg",
"http://easyrecipecollection.com/images/genf200.jpg",
"http://banners.moreniche.com/show.php?id=12293&w=128221&s=176&e=gif",  
"http://banners.moreniche.com/show.php?id=13316&w=128221&s=181&e=gif"
);

text = new initArray(
"ProShape Weight Loss",
"GenF20 Restores Youthful Vitality",  
"Hoodia Weight Loss Patch",
"Fibretrim Cuts Calories"
);

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>');

//-->