
datetoday = new Date();
timenow=datetoday.getTime();
datetoday.setTime(timenow);
thehour = datetoday.getHours();
if (thehour > 17) var display = "Good Evening, Welcome to the home of Yes Concrete<span style='color:red;margin:0px;'>Barrow Mix</span>,";
else if (thehour > 11) var display = "Good Afternoon, Welcome to the home of Yes Concrete <span style='color:red;margin:0px;'>Barrow Mix</span>,";
else if (thehour < 12) var display = "Good Morning, Welcome to the home of Yes Concrete <span style='color:red;margin:0px;'>Barrow Mix</span>,";
document.write(display);


