<!--
// 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(
"KimCattrall.html",
"KateBeckinsale.html",
"LoriSinger.html",
"JulianneMoore.html",
"JeanneTripplehorn.html",
"JustinaVail.html",
"KateHudson.html",
"PamelaAnderson.html",
"ParisHilton.html",
"RosannaArquette.html",
"MadeleineStowe.html",
"MonicaBellucci.html",
"Madonna.html"
);

image = new initArray(
"images/celebrity/kim_cattrall_small_img.gif",
"images/celebrity/kate_beckinsale_small_img.gif",
"images/celebrity/lori_singer_small_img.gif",
"images/celebrity/julianne_moore_small_img.gif",
"images/celebrity/jeanne_tripplehorn_small_img.gif",
"images/celebrity/justina_vail_small_img.gif",
"images/celebrity/kate_hudson_small_img.gif",
"images/celebrity/pamela_anderson_small_img.gif",
"images/celebrity/paris_hilton_small_img.gif",
"images/celebrity/rosanna_arquette_small_img.gif",
"images/celebrity/madeleine_stowe_small_img.gif",
"images/celebrity/monica_bellucci_small_img.gif",
"images/celebrity/madonna_small_img.gif"
);

text = new initArray(
"Kim Cattrall",
"Kate Beckinsale",
"Lori Singer",
"Julianne Moore",
"Jeanne Tripplehorn",
"Justina Vail",
"Kate Hudson",
"Pamela Anderson",
"Paris Hilton",
"Rosanna Arquette",
"Madeleine Stowe",
"Monica Bellucci",
"Madonna"
);

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>');

//-->
