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/articles/israel/israeli_economy_since_six_day_war_1967_2007.html",
"http://www.historama.com/online-resources/articles/israel/moshe_tavor_mossad_safecracker.html",
"http://www.historama.com/online-resources/articles/israel/teddy_kollek_informed_for_british_intelligence.html",
"http://www.historama.com/online-resources/articles/israel/story_israel_first_independence_day_14_may_1948.html",
"http://www.historama.com/online-resources/articles/israel/shalom_nagar_eichmanns_hangman.html",
"http://www.historama.com/online-resources/articles/israel/idf_israel_defense_forces_general_staff.html",
"http://www.historama.com/online-resources/articles/israel/dan_shomron_on_1976_entebbe_raid.html",
"http://www.historama.com/online-resources/articles/israel/israeli_economy_since_six_day_war_1967_2007.html",
"http://www.historama.com/online-resources/articles/israel/story_israel_first_independence_day_14_may_1948.html"
);

image = new initArray(
"http://www.historama.com/online-resources/articles/israel/israeli_made_susita_cars_1960s-vsm.jpg",
"http://www.historama.com/online-resources/articles/israel/Tavor 1-vsm.jpg",
"http://www.historama.com/online-resources/articles/israel/teddy_kollek_main-vsm.jpg",
"http://www.historama.com/online-resources/articles/israel/israeli_independence_megila_scroll_holder-vsm.jpg",
"http://www.historama.com/online-resources/articles/israel/eichmann2-vsm.jpg",
"http://www.historama.com/online-resources/articles/israel/idfgeneralstaff-vsm.jpg",
"http://www.historama.com/online-resources/articles/israel/shomronentebbe 1-vsm.jpg",
"http://www.historama.com/online-resources/articles/israel/israeli_interior_design_1950s-60s-vsm.jpg",
"http://www.historama.com/online-resources/articles/israel/israeli_declaration_independence_1948_session_left-vsm.jpg"
);

text = new initArray(
"Israeli made Susita cars from the 1960s",
"Moshe Tavor, the safebreaker of the Mossad",
"Teddy Kollek, the future Mayor of Jerusalem, who helped the British fight the Revisionist Zionist underground",
"Israels Independence Scroll and decorative protective metal case",
"Adolf Eichmann on trial in Jerusalem",
"The Israeli Army General Staff of 2006, prior to the 2nd Lebanon War",
"IDF General Dan Shomron, commander of the 1976 hostage rescue raid on Entebbe, Uganda",
"Israeli interior design of the 1950s-60s",
"David Ben-Gurion reads Israels Declaration of Independence, 14 May 1948"
);

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>');

