// JavaScript Document
now = new Date

	if (now.getHours() < 5) {
		document.write("<p><strong><Good Morning,</strong></p>")
	}
	else if (now.getHours() < 12) {
		document.write("<p><strong>Good Morning,</strong></p>")
	}
	else if (now.getHours() < 18) {
		document.write("<p><strong>Good Afternoon,</strong></p>")
	}
	else {
		document.write("<p><strong>Good Evening,</strong></p>")
	}
