function timeMessage() {
if (now.getHours() < 12) {
	document.write("Good Morning!")
}

else if (now.getHours() < 18) {
	document.write("Good Afternoon!")
}

else {
	document.write("Good Evening!")
}
}