<!-- Hide the script from old browsers --
<!-- copyright pammer webdesign 2000 -->
<!-- http://www.wallersee.com/webdesign/ -->

today = new Date()
if(today.getMinutes() < 10){ 
pad = "0"}
else 
pad = "";
document.write ;
if((today.getHours() >=0) && (today.getHours() <=3)){
document.write("Sie sind noch gar nicht m&uuml;de?")
}
if((today.getHours() >=4) && (today.getHours() <=5)){
document.write("Sie sind aber fr&uuml;h auf!")
}
if((today.getHours() >=6) && (today.getHours() <=8)){
document.write("Guten Morgen")
}
if((today.getHours() >=9) && (today.getHours() <=11)){
document.write("Sch&ouml;nen Vormittag!")
}
if((today.getHours() >=12) && (today.getHours() <=17)){
document.write("Sch&ouml;nen Nachmittag!")
} 
if((today.getHours() >=18) && (today.getHours() <=23)){
document.write("Guten Abend!")
}
   
// -- End Hiding Here -->
