
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.crowleyhallghosts.com/crowley-hall-dvd.html",
"http://payloadz.com/go/sip?id=460697"
);

image = new initArray(
"side-banner/crowley-hall-right-1.jpg",
"side-banner/crowley-download-2.jpg"
);

text = new initArray(
"Buy 'The Ghosts of Crowley Hall' DVD Now",
"Download The Ghosts of Crowley Hall Now!"
);

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 href=\"' +ranlink+ '\" target=\"_blank\"><img src=\"'+ranimage+'\" border="0" width="160" height="600" alt=\"'+rantext+'\"></a>');

