/*
Displays 'Good Morning', 'Good Afternoon' or 'Good Evening' depending on time of day
*/

<!-- Hide this script from incompatible Web browsers!

today = new Date()
hours = today.getHours()
if(hours < 12){
   document.write("Good Morning")
}else if(hours< 18){
   document.write("Good Afternoon")
}else{
   document.write("Good Evening")
}

<!-- -->

