<!-- Begin
 today = new Date()
 if(today.getMinutes() < 10){
 pad = "0"}
 else
 pad = "";
 document.write ;if((today.getHours() >=6) &&
 (today.getHours() <=12)){
 document.write("Good Morning! ") //nach 6 Uhr bis 12 Uhr
 }
 if((today.getHours() >=13) && (today.getHours() <=17)){
 document.write("Good Afternoon! ") // nach 13 Uhr bis 18 Uhr
 }
 if((today.getHours() >=18) && (today.getHours() <=23)){
 document.write("Good Evening! ") //nach 17 Uhr bis 23 Uhr
 }
 if((today.getHours() >=0) && (today.getHours() <=4)){
 document.write("Hello, still out there? ")
 }
 if((today.getHours() >=4) && (today.getHours() <=6)){
 document.write("Welcome early bird! ")
 }
// -- Ende verstecken -->