// original content taken from Nic's JavaScript Page with permission
// lack of these three lines will result in copyright infringment
// made by: Nic's JavaScript Page - http://www.javascript-page.com
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(
"nappi/annonce_hajdu_e.html",
"gite_hagenthal_e.html",
"koenig_e.html",
"psb/index.html"
// "letesson_e.html"
);
image = new initArray(
"nappi/annonce_hajdu_maison_logo.GIF",
"gif/gite_hagenthal_logo.gif",
"gif/koenig_logo.GIF",
"psb/psb_logop.GIF"
// "gif/letesson_logo.gif"
);
text = new initArray(
"Country Cottage in Muespach-le-Haut",
"Country Cottage in Hagenthal-le-Bas",
"Hotel-Restaurant Koenig / Au Lion Rouge",
"Pierre Specker Band'"
// "Stained Glass Workshop Le Tesson"
);
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>');