//Display TOD Greeting

var dDay = new Date()
var nHours = dDay.getHours()
var greeting="";

if ((nHours <12 ) && (nHours >=5))
{
    greeting="Good Morning! "; 
}
if ((nHours >=12) && (nHours <18)) 
{
    greeting="Good Afternoon! "; 
}
if ((nHours >=18) && (nHours <24)) 
{
    greeting="Good Evening! "; 
}
if ((nHours >=0) && (nHours <5))
{
    greeting="You&#146;re Up Late (or Early)! "; 
}
// Write the TOD Greeting
document.write(greeting);
//End TOD Greeting
