function fade(step,idx) {
  var imgs = document.getElementById("deco").getElementsByTagName("img");

  step = step || 0;

  imgs[idx].style.opacity = step/100;
  imgs[idx].style.filter = "alpha(opacity=" + step + ")";

  if( step%2 == 0 ) {

    step -= 2;
    if (step == 0) {
      if ( idx < (imgs.length - 1) ) {
        idx += 1;
      } else {
        idx = 0;
      }
      window.setTimeout(function () { fade(1,idx); }, 1000);
    } else {
      window.setTimeout(function () { fade(step,idx); }, 100);
    }

  } else {

    step += 2;
    if (step == 71) {
      window.setTimeout(function () { fade(70,idx); }, 5000);
    } else {
      window.setTimeout(function () { fade(step,idx); }, 100);
    }

  }
}

function init() {
  var imgs = document.getElementById("deco").getElementsByTagName("img");
  var idx = 0;
  window.setTimeout(function () { fade(1,idx); }, 1000);
};

function chkKontaktForm () {
  if (document.kontaktForm.Name.value == "") {
    alert("Bitte Ihren Namen eingeben!");
    document.kontaktForm.Name.focus();
    return false;
  }
  if (document.kontaktForm.Strasse.value == "") {
    alert("Bitte die Strasse eingeben!");
    document.kontaktForm.Strasse.focus();
    return false;
  }
  if (document.kontaktForm.Nr.value == "") {
    alert("Bitte die Hausnummer eingeben!");
    document.kontaktForm.Nr.focus();
    return false;
  }
  if (document.kontaktForm.PLZ.value == "") {
    alert("Bitte die Postleitzahl eingeben!");
    document.kontaktForm.PLZ.focus();
    return false;
  }
  if (document.kontaktForm.Ort.value == "") {
    alert("Bitte den Wohnort eingeben!");
    document.kontaktForm.Ort.focus();
    return false;
  }
  if (document.kontaktForm.Mail.value == "") {
    alert("Bitte Ihre E-Mail-Adresse eingeben!");
    document.kontaktForm.Mail.focus();
    return false;
  }
  if (document.kontaktForm.Mail.value.indexOf("@") == -1) {
    alert("Keine E-Mail-Adresse!");
    document.kontaktForm.Mail.focus();
    return false;
  }
}
