// 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.imvu.com/shop/web_search.php?manufacturers_id=17632436",
"http://www.imvu.com/shop/web_search.php?manufacturers_id=13356446",
"http://www.imvu.com/catalog/index.php/manufacturers_id/18993892",
"http://www.imvu.com/catalog/index.php/manufacturers_id/5850545",
"http://www.imvu.com/shop/web_search.php?manufacturers_id=16763261",
"http://www.imvu.com/shop/web_search.php?manufacturers_id=2897078",
"http://www.imvu.com/catalog/index.php?manufacturers_id=2915983",
"http://www.imvu.com/shop/web_search.php?manufacturers_id=6123102",
"http://www.imvu.com/shop/web_search.php?manufacturers_id=7978627",
"http://www.imvu.com/shop/web_search.php?manufacturers_id=46222343",
"http://www.imvu.com/shop/web_search.php?manufacturers_id=13227306",
"http://www.imvu.com/shop/web_search.php?manufacturers_id=40777241",
"http://www.imvu.com/shop/web_search.php?manufacturers_id=7390703",
"http://www.imvu.com/shop/web_search.php?manufacturers_id=12587919",
"http://bit.ly/dxAZjU"
);

image = new initArray(
"http://i271.photobucket.com/albums/jj141/imvupics_2008/banner-animation.gif",
"http://i241.photobucket.com/albums/ff161/Tatiana_art/tanya-banner.gif",
"http://i40.photobucket.com/albums/e212/_sparkli_/IMVU/Blinged-SWOH.png",
"http://i43.tinypic.com/308xw7c.gif",
"images/site/banner_long.png",
"http://img24.imageshack.us/img24/3205/devbanner2897078kx5.gif",
"http://i154.photobucket.com/albums/s255/CHEEKYBZ/bannersmall.jpg",
"http://i135.photobucket.com/albums/q143/IMVU_16/Developer%20Advertizing/BlingDirectoryBannercopy.png",
"http://i257.photobucket.com/albums/hh205/greenfayrie/omg5/banner645.png",
"http://i887.photobucket.com/albums/ac76/Jokalari/fuzzybanner.png",
"http://i425.photobucket.com/albums/pp331/Moonwok/Moonwok0Logos_banner645X60.jpg",
"http://img708.imageshack.us/img708/653/dragoniasbanner.png",
"http://img94.imageshack.us/img94/950/banner645x60.jpg",
"http://img594.imageshack.us/img594/5697/dsbanner.jpg",
"http://i949.photobucket.com/albums/ad332/lunaprimero/bannergaf.gif"
);

text = new initArray(
"jilliejane",
"Tanya",
"SixWeekOldHedgehog",
"JadawickedSnowangel",
"MarniDawg",
"Gaf210",
"LankanDivaCheekyB",
"PadgettFarm",
"Greenfayrie",
"Jokalari",
"Moonwok",
"Dragonias",
"Marilena",
"Darksirenne",
"LunaPrimero"
);

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 target="_blank" href=\"' +ranlink+ '\"><img src=\"'+ranimage+'\" border="0" alt=\"'+rantext+'\"></a>');

