<!-- Verstecken für ältere Browser --
  today = new Date()
  if(today.getMinutes() < 10){
  pad = "0"}
  else
  pad = "";
  document.write ;if((today.getHours() >=7) &&
  (today.getHours() <=12)){
  document.write("<h2> Buenos dias</h2>") //nach 6 Uhr bis 12 Uhr
  }
  if((today.getHours() >=13) && (today.getHours() <=17)){
  document.write("<h2> Buenas tardes</h2>") // nach 13 Uhr bis 18 Uhr
  }
  if((today.getHours() >=18) && (today.getHours() <=23)){
  document.write("<h2> Buenas noches</h2>") //nach 17 Uhr bis 23 Uhr
  }
  if((today.getHours() >=0) && (today.getHours() <=4)){
  document.write("<h2> Hola!</h2>")
  }
  if((today.getHours() >=5) && (today.getHours() <=6)){
  document.write("<h2> Buenas madrugadas</h2>")
   }
// -- Ende verstecken -->