

datetoday = new Date();

timenow=datetoday.getTime();

datetoday.setTime(timenow);

thehour = datetoday.getHours();

if (thehour >= 17) display = "Evening and Welcome to MyFloridaCounty.com";

else if (thehour >= 12) display = "Afternoon and Welcome to MyFloridaCounty.com";

else display = "Morning and Welcome to MyFloridaCounty.com";

var greeting = ("Good " + display + "!");

document.write(greeting);

