<!-- Begin the greeting, good morning or good afternoon or good evening
todaydate = new Date();
timeis=todaydate.getTime();
todaydate.setTime(timeis);
houris = todaydate.getHours();
if (houris > 17) display = "evening";
else if (houris > 12) display = "afternoon";
else display = "morning";
var welcome = ("Good " + display + " and welcome to Grass and Groundcare Equipment");
document.write("<small><font color='#003366' font size='1' face='Georgia, Times New Roman, Times, serif'>"+welcome)
// End -->