  today = new Date()
    if(today.getMinutes() < 10){
        pad = "0"}
    else
    pad = "";
  document.write    ;if((today.getHours() >=6) && (today.getHours() <=11)){
document.write("Einen sch&ouml;nen guten Morgen") //nach 6 Uhr bis 11 Uhr
}
   if((today.getHours() >=12) && (today.getHours() <=13)){
document.write("Mahlzeit! ") //nach 12 Uhr bis 13 Uhr
}
    if((today.getHours() >=14) && (today.getHours() <=17)){
document.write("Einen wundersch&ouml;nen guten Tag !") // nach 14 Uhr bis 17 Uhr
}
    if((today.getHours() >=18) && (today.getHours() <=23)){
document.write("Guten Abend !") //nach 18 Uhr bis 23 Uhr
}
    if((today.getHours() >=0) && (today.getHours() <=3)){
document.write("So sp&auml;t noch auf????")
}
    if((today.getHours() >=4) && (today.getHours() <=5)){
document.write("Sind Sie etwa schon oder noch auf?")
}