	// Client-side reading of computer's clock and setting of greeting
	// Bob Delaney, Siris Consulting -- www.sirisconsult.com
	var todayobj = new Date();	// Define a Date() object
	var todaytime, todaydate;		// Need to use two variables
	if (todayobj.getHours() < 4) {
		todaytime = "heavens, you're up late";}		// Before 4:00 a.m.
	else if (todayobj.getHours() >= 4 && todayobj.getHours() < 7) {
		todaytime = "morning! You're up early"; }	// 4:00 to 6:59 a.m.
	else if (todayobj.getHours() >= 7 && todayobj.getHours() < 12) {
		todaytime = "morning"; }	// Before noon
	else if (todayobj.getHours() >= 12 && todayobj.getHours() < 18) {
		todaytime = "afternoon"; }	// Between 12 noon and 6:00 p.m.
	else {
		todaytime = "evening"; }	// Between 7:00 p.m. and Midnight
	
	// Calculate month for display - Jan = 0; Dec = 11
	if (todayobj.getMonth() == 0) {
		todaydate = "January "; }
	else if (todayobj.getMonth() == 1) {
		todaydate = "February "; }
	else if (todayobj.getMonth() == 2) {
		todaydate = "March "; }
	else if (todayobj.getMonth() == 3) {
		todaydate = "April "; }
	else if (todayobj.getMonth() == 4) {
		todaydate = "May "; }
	else if (todayobj.getMonth() == 5) {
		todaydate = "June "; }
	else if (todayobj.getMonth() == 6) {
		todaydate = "July "; }
	else if (todayobj.getMonth() == 7) {
		todaydate = "August "; }
	else if (todayobj.getMonth() == 8) {
		todaydate = "September "; }
	else if (todayobj.getMonth() == 9) {
		todaydate = "October "; }
	else if (todayobj.getMonth() == 10) {
		todaydate = "November "; }
	else {
		todaydate = "December "; }

	// Use getDate() for date and getFullYear() for the year
	// Assemble the string: month + " " + date + ", " + year 		
	todaydate += (todayobj.getDate() + ", " + todayobj.getFullYear());
