document.write("<font face=arial size=2 color=#0033CC>");
day = new Date()
hr = day.getHours()
if (hr == 1)
document.write("Overnight")
if (hr == 2)
document.write("Overnight")
if (hr == 3)
document.write("Overnight")
if (hr == 4)
document.write("Good Morning!")
if (hr == 5)
document.write("Good Morning!")
if (hr == 6)
document.write("Good Morning!")
if ((hr == 7) || (hr == 8))
document.write("Good Morning!")
if ((hr == 9) || (hr == 10))
document.write("Good Morning!")
if (hr == 11)
document.write("Good Morning!")
if (hr == 12)
document.write("Noon Hour - Good Afternoon!")
if (hr == 14)
document.write("Good Afternoon!")
if ((hr == 13) || (hr == 15) || (hr == 16))
document.write("Good Afternoon!")
if ((hr == 17) || (hr == 18) || (hr == 19) || (hr == 20) || (hr == 21) || (hr == 22))
document.write("Good Evening!")
if (hr == 23)
document.write("Good Evening!")
if (hr == 0)
document.write("Midnight!")
document.write("</font>")