// JavaScript Document

<!-- Original:  Robert Ison -->
<!-- Distributed by hypergurl http://www.hypergurl.com
// Modified by L. O. Cutting - HEC

<!-- Begin
datetoday = new Date();
timenow=datetoday.getTime();
datetoday.setTime(timenow);
thehour = datetoday.getHours();
if (thehour > 18) display = "Good Evening. &nbsp;Are you planning on getting your rest tonight?";
else if (thehour >16) display = "Good Afternoon. &nbsp;Did you drink 8 glasses of water today?";
else if (thehour >12) display = "Good Afternoon, have you taken a nap yet?";
else if (thehour >10) display = "Are you going to have a Healthy Lunch today?";
else display = "Good Morning! &nbsp;Have you started your day with a healthy glass of warm water?";
var greeting = (display);
document.write(greeting);
//  End -->


