<!--
// 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

// friend finder number of members
var memb = "3,794,228";
// link to celeb sponsor
var spons = "http://www.nitrocelebs.com/.sbean?bean=1-0-3-18056-42-1-13&front=7";

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(
"AnneArcher.html",
"AngelinaJolie.html",
"CarmenElectra.html",
"CatherineBell.html",
"AprilBogenschutz.html",
"ElizabethMitchell.html",
"ElisaMorucci.html",
"FrancesMcDormand.html",
"HalleBerry.html"
);

image = new initArray(
"images/celebrity/anne_archer_small_img.gif",
"images/celebrity/angelina_jolie_small_img.gif",
"images/celebrity/carmen_electra_small_img.gif",
"images/celebrity/catherine_bell_small_img.gif",
"images/celebrity/april_bogenschutz_small_img.gif",
"images/celebrity/elizabeth_mitchell_small_img.gif",
"images/celebrity/elisa_morucci_small_img.gif",
"images/celebrity/frances_mcdormand_small_img.gif",
"images/celebrity/halle_berry_small_img.gif"
);

text = new initArray(
"Anne Archer",
"Angelina Jolie",
"Carmen Electra",
"Catherine Bell",
"April Bogenschutz",
"Elizabeth Mitchell",
"Elisa Morucci",
"Frances McDormand",
"Halle Berry"
);

var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var ranlink  = link[core];
var ranimage = image[core];
var rantext  = text[core];

document.write('&nbsp;&nbsp;');
document.write('<img src="'+ranimage+'" border="1">');
document.write('<br>');
document.write('&nbsp;&nbsp;');
document.write('<a href="' +ranlink+ '">');
document.write(rantext);
document.write('</a>');

//-->
