<!--
nowdate = new Date()
hours = nowdate.getHours()
if ((hours<3)){
document.write("v tuto pozdní noční hodinu")
}
else{
if ((hours>=3)&&(hours<=6)){
document.write("dnes nad ránem")
}
else{
if ((hours>=6)&&(hours<=8)){
document.write("během dnešního rána")
}
else{
if ((hours>=8)&&(hours<=12)){
document.write("ještě před polednem")
}
else{
if ((hours>=12)&&(hours<=17)){
document.write("během dlouhého odpoledne")
}
else{
if ((hours>=17)&&(hours<=21)){
document.write("na sklonku dneška")
}
else{
document.write("za dnešní noci")
}
}
}
}
}
}
//

