now = new Date(), 
hour = now.getHours() 

if (hour < 12){
	document.write("Good Morning!")
} 

else if (hour < 18){
	document.write("Good Afternoon!")
} 
else {
	document.write("Good Evening!")
} 
