today = new Date()
if(today.getMinutes()<10)
{pad = "0"}
else
pad = "";
if((today.getHours() <=24) && (today.getHours() <=11))
{document.write("<font color=#050D73><b><i>Guten Morgen ! &nbsp;&nbsp;</b></i>")}  //nach 24 Uhr bis 11 Uhr
if((today.getHours() >=12) && (today.getHours() <=17))
{document.write("<font color=#050D73><b><i>Guten Tag ! &nbsp;&nbsp;</b></i>" )} //nach 11 Uhr bis 18 Uhr
if((today.getHours() >=18) && (today.getHours() <=23))
{document.write("<font color=#050D73><b><i>Guten Abend ! &nbsp;&nbsp;</b></i>")} //nach 18 Uhr bis 24 Uhr

