<!-- Begin
todaydate = new Date();
timeis=todaydate.getTime();
todaydate.setTime(timeis);
houris = todaydate.getHours();
if (houris > 18) display = "evening";
else if (houris >11) display = "afternoon";
else display = "morning";
var welcome = ("Good " + display +"! <br /> To read an excerpt please click on a cover!");
document.write(welcome);
// End -->

