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