var Now = new Date()
			var theHour = Now.getHours()
			if (theHour >= 12 && theHour < 18)
				{ document.write("Good Afternoon") }
			else if (theHour < 12)
				{ document.write("Good Morning") }			 		
			else
				{ document.write("Good Evening") }

