today=new Date();
if(today.getHours() >= 18){ document.write("Good Evening!")}
else if(today.getHours() >=12){ document.write("Good Afternoon!")}
else if(today.getHours() >= 6){ document.write("Good Morning!")}
else {document.write("")};