
<!-- Hide the script from old browsers --
today = new Date()
if(today.getMinutes() < 10){ 
pad = "0"}
else 
pad = "";
document.write ;if((today.getHours() <=5) && (today.getHours() >=9)){
document.write("Good morning")
}
if((today.getHours() >=10) && (today.getHours() <=16)){
document.write("Good day")

} 
if((today.getHours() >=17) && (today.getHours() <=23)){
document.write("Good evening")

}
if((today.getHours() >=0) && (today.getHours() <=9)){
document.write("Good morning")





}
// -- End Hiding Here -->




