<!-- Hide from old browsers 
//
now = new Date();
t = now.getHours();

if (t<5) document.write("ood morning to you. ");

else if (t<12) document.write("ood morning to you. ");

else if (t<18) document.write("ood afternoon to you. ");

else document.write("ood evening to you. ");
// --> 
