<!--
// 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];
  }
}

image = new initArray(
"/images/top-mountain.jpg",
"/images/top-skyline-chicago.jpg",
"/images/top-fountain.jpg",
"/images/top-cabin.jpg",
"/images/top-laurel-falls.jpg",
"/images/top-chicago-waterfront-night.jpg",
"/images/top-augustine.jpg",
"/images/top-memphis.jpg"
);

core = Math.round(Math.random() * (image.length-1));
var ranimage = image[core];

document.write('<img src=\"'+ranimage+'\" width=\"570\" height=\"80\">');

