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(
"#",
"#",
"#",
"#"
);

image = new initArray(
"http://www.discoverthecape.com/images/combopiccape1.jpg",
"http://www.discoverthecape.com/images/combopiccape2.jpg",
"http://www.discoverthecape.com/images/combopiccape3.jpg",
"http://www.discoverthecape.com/images/combopiccape4.jpg"
);

text = new initArray(
"Cape Town South Africa",
"Cape Town South Africa",
"Cape Town South Africa",
"Cape Town South Africa"
);

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+ '\"><img src=\"'+ranimage+'\" border="0" alt=\"'+rantext+'\"></a>');


