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.historama.com/online-resources/history-collecting-resources/architecture/bauhaus_and_israeli_architecture.html",
"http://www.historama.com/online-resources/history-collecting-resources/architecture/bauhaus_and_israeli_architecture.html",
"http://www.historama.com/online-resources/history-collecting-resources/architecture/bauhaus_and_israeli_architecture.html",
"http://www.historama.com/online-resources/history-collecting-resources/architecture/bauhaus_and_israeli_architecture.html",
"http://www.historama.com/online-resources/history-collecting-resources/architecture/bauhaus_and_israeli_architecture.html",
"http://www.historama.com/online-resources/history-collecting-resources/architecture/bauhaus_and_israeli_architecture.html",
"http://www.historama.com/online-resources/history-collecting-resources/architecture/bauhaus_and_israeli_architecture.html",
"http://www.historama.com/online-resources/history-collecting-resources/architecture/bauhaus_and_israeli_architecture.html",
"http://www.historama.com/online-resources/history-collecting-resources/architecture/bauhaus_and_israeli_architecture.html"
);

image = new initArray(
"http://www.historama.com/online-resources/history-collecting-resources/architecture/arch7-vsm.jpg",
"http://www.historama.com/online-resources/history-collecting-resources/architecture/arch3-vsm.jpg",
"http://www.historama.com/online-resources/history-collecting-resources/architecture/arch1-vsm.jpg",
"http://www.historama.com/online-resources/history-collecting-resources/architecture/israeli_box_building_1940s_renovated_ibn_gvirol_10_tel_aviv-vsm.jpg",
"http://www.historama.com/online-resources/history-collecting-resources/architecture/jerusalem_art_deco_french_embassy-vsm.jpg",
"http://www.historama.com/online-resources/history-collecting-resources/architecture/jerusalem_bauhaus_building_corner-vsm.jpg",
"http://www.historama.com/online-resources/history-collecting-resources/architecture/jerusalem_ottoman_architecture_old_city-vsm.jpg",
"http://www.historama.com/online-resources/history-collecting-resources/architecture/jerusalem_italian_fascist_architecture_generali_building_side-vsm.jpg",
"http://www.historama.com/online-resources/history-collecting-resources/architecture/arch30-vsm.jpg"
);

text = new initArray(
"Bauhaus apartment building in Tel Aviv",
"Bauhaus office-storefront building in Tel Aviv",
"Levantine ecclectic style building in Tel Aviv",
"Renovated Israeli box-style office/apartment block in Tel Aviv",
"Art-deco styled French Embassy in Jerusalem",
"Stone bauhaus apartment block in Jerusalem",
"Ottoman-levantine building in Old City of Jerusalem",
"Italian Fascist architecture in Jerusalem (Generali building)",
"Street corner bauhaus building in Haifa"
);

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 rel=\"nofollow\" href=\"' +ranlink+ '\"><img src=\"'+ranimage+'\" border="0" title=\"'+rantext+'\"></a>');

