<!-- Greeting.js

<!-- Begin
//
CN_Now = new Date();
localtime = CN_Now.toString();
CN_Hours = CN_Now.getHours();
if (CN_Hours < 12) {
	document.write("Good Morning!");
} else {
	if (CN_Hours >= 12 && CN_Hours < 17)  {
			document.write("Good Afternoon!");
	} else {
		if (CN_Hours >= 17) {
			document.write("Good Evening!");
			} else {
  			document.write("Good Day!");
		}
	}
}
//  End -->