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/online-gallery/eretz_israel_palestine_noter_jewish_settlement_police_uniform.html",
"http://www.historama.com/online-resources/online-gallery/israeli_haga_steel_helmet.html",
"http://www.historama.com/online-resources/online-gallery/israeli_haga_steel_helmet.html",
"http://www.historama.com/online-resources/online-gallery/israeli_hitelmacher_hat.html",
"http://www.historama.com/online-resources/online-gallery/irgun_etzel_hebrew_revolt_war_liberation_manifesto.html",
"http://www.historama.com/online-resources/online-gallery/irgun_etzel_hebrew_revolt_war_liberation_manifesto.html",
"http://www.historama.com/online-resources/online-gallery/eretz_israel_palestine_noter_jewish_settlement_police_uniform.html",
"http://www.historama.com/online-resources/online-gallery/israeli_hitelmacher_hat.html",
"http://www.historama.com/online-resources/online-gallery/israeli_hitelmacher_hat.html",
"http://www.historama.com/online-resources/online-gallery/eretz_israel_palestine_noter_jewish_settlement_police_uniform.html"
);

image = new initArray(
"http://www.historama.com/online-resources/online-gallery/left-front-kolpak-noter-vsm.jpg",
"http://www.historama.com/online-resources/online-gallery/eretz_israel_magen_david_adom_helmet_front-vsm.jpg",
"http://www.historama.com/online-resources/online-gallery/haga 1-vsm.jpg",
"http://www.historama.com/online-resources/online-gallery/israeli_made_hitelmacher_military_hat_side-vsm.jpg",
"http://www.historama.com/online-resources/online-gallery/Irgun_hebrew_revolt_war_of_liberation_inside-vsm.jpg",
"http://www.historama.com/online-resources/online-gallery/Irgun_hebrew_revolt_war_of_liberation_page3-vsm.jpg",
"http://www.historama.com/online-resources/online-gallery/palestine-police-supernumary-police-hat-badge-vsm.jpg",
"http://www.historama.com/online-resources/online-gallery/zahal_idf_israel_defense_forces_metal_hat_badge-vsm.jpg",
"http://www.historama.com/online-resources/online-gallery/david_shaltiel_israeli_uniform_hitelmacher_1948-vsm.jpg",
"http://www.historama.com/online-resources/online-gallery/noter-enlistment-pin-vsm.jpg"
);

text = new initArray(
"Rare kolpak hat of the Jewish Notrim of the Palestine Police, 1936-48",
"Locally made Eretz Israel Magen David Adom brodie style helmet, 1940s",
"Locally made Eretz Israel civil/air defense brodie style helmet, 1941",
"Israeli made green denim Hitelmacher hat for Israeli Army (IDF)",
"Rare manifesto of underground Irgun/Etzel explaining reasons for Hebrew Revolt, 1944-48",
"Rare manifesto of underground Irgun/Etzel explaining reasons for Hebrew Revolt, 1944-48",
"Palestine Police militaria: Supernumerary Police hat/kolpak insignia badge",
"Israeli Army (IDF) metal emblem as worn on hitelmacher hats, 1948-50s",
"David Shaltiel, Jerusalem commander in War of Independence, wearing hitelmacher hat",
"Jewish noter militaria: enlistment pin for members of the notrut formations"
);

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>');

