
datetoday = new Date();
timenow=datetoday.getTime();
datetoday.setTime(timenow);
thehour = datetoday.getHours();
if (thehour > 17) var display = "<b style='color:darkblue;'>Good Evening</b>, Welcome to the home of AAA Concrete,";
else if (thehour > 11) var display = "<b style='color:darkblue;'>Good Afternoon</b>, Welcome to the home of AAA Concrete,";
else if (thehour < 12) var display = "<b style='color:darkblue;'>Good Morning</b>, Welcome to the home of AAA Concrete,";
document.write(display);

