/* 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(
"top-title-huge01a.jpg",
"top-title-huge02a.jpg",
"top-title-huge03a.jpg",
"top-title-huge04a.jpg"
);

image2 = new initArray(
"top-title-huge01b.jpg",
"top-title-huge02b.jpg",
"top-title-huge03b.jpg",
"top-title-huge04b.jpg"
);



var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var ranimage = image[core];
var ranimage2 = image2[core];

document.write('<img src=/icn/'+ranimage+'\ border="0"></td><td width=200 valign=top><img src=/icn/'+ranimage2+'\ border="0">');

