var dDay = new Date()
var nHours = dDay.getHours()
if ((nHours <10 ) && (nHours >=5)) {document.write("Jó Reggelt Kívánunk!")}
if ((nHours >=10) && (nHours <18)) {document.write("Szép Napot!")}
if ((nHours >=18) && (nHours <23)) {document.write("Jó Estét Kívánunk!")}
if ((nHours >=23) && (nHours <24)) {document.write("Jó Estét Kívánunk!")}
if ((nHours >=0) && (nHours <5 )) {document.write("Jó Éjszakát Kívánunk!")}

