// 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://rlloyd1.holtebook9.hop.clickbank.net",
"http://rlloyd1.kevindixon.hop.clickbank.net",
"http://rlloyd1.sonicpro.hop.clickbank.net",
"http://click.linksynergy.com/fs-bin/click?id=AVEKMsIwNP4&offerid=129871.10000069&type=4&subid=0",
"http://click.linksynergy.com/fs-bin/click?id=AVEKMsIwNP4&offerid=132481.10000006&type=4&subid=0",
"http://click.linksynergy.com/fs-bin/click?id=AVEKMsIwNP4&offerid=148888.10000120&type=4&subid=0"
);

image = new initArray(
"http://www.teendrivercheck.com/images/affbanner6.jpeg",
"http://www.teendrivercheck.com/images/BannerStatic468X60.gif",
"http://www.sonicproducer.com/art/banner46801.gif",
"http://www.acronym.com/sirius/SIRIUS%20Banners/NFL/468x60_nfl.gif",
"http://www.fye.com/onlinemarketing/fye/banners/fye_freeshippingA_468x60.gif",
"http://www.handango.com/marketing/affiliate/468x60G1.jpg"
);

text = new initArray(
"electricity4gas.com",
"Battery Reconditioning Report",
"Sonic Producer",
"Sirius Satellite Radio Inc.",
"fye.com free shipping",
"Handango Inc."
);

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+ '\" target=\"_blank\"><img src=\"'+ranimage+'\" border="0" vspace="25" alt=\"'+rantext+'\"></a>');

//-->
