// Greeting

now = new Date();
t =  now.getHours();
if (t<12) document.write("Good Morning");
else if (t<18) document.write("Good Afternoon");
else document.write("Good Evening");