  // reload images
  var base= "/vorschaltseite/menu/"
  var nrm = new Array();
  var omo = new Array();
  var stuff = new Array('eh_shop','eh_hzwl','eh_events','eh_jobs','eh_oeffnungszeiten','eh_ueber_uns','eh_kontakt','gh_start','gh_grosskueche','gh_gaststaetten','gh_kd','gh_jobs','gh_ueber_uns','gh_kontakt');

  // Pre-load part.

  if (document.images)
  {
    for (i=0;i<stuff.length;i++)
    {
      nrm[i] = new Image;
      nrm[i].src = base + stuff[i] + ".gif"
      omo[i] = new Image;
      omo[i].src = base + stuff[i] + "_active.gif";
    }
  }


  // The functions: first mouseover, then mouseout

  function over(no)
  {
    if (document.images)
    {
      //alert(stuff[no]);
      document.images[stuff[no]].src = omo[no].src
    }
  }

  function out(no)
  {
    if (document.images)
    {
      document.images[stuff[no]].src = nrm[no].src
    }
  }

  var iCurentEHImageIndex = 0;

  function UpdateEHImage() {
   var aProjectImgData = ['ehBackgroundImage', 'ehBackgroundImageTwo','ehBackgroundImageThree'];
   document.getElementById('ehBackgroundImageDiv').className = aProjectImgData[iCurentEHImageIndex];
   iCurentEHImageIndex++;
   if (iCurentEHImageIndex >= aProjectImgData.length) iCurentEHImageIndex=0;
   window.setTimeout('UpdateEHImage()', 3000);
  }