<!-- 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 Furniture, Accessories and Gifts by Julian and Jo Monkley");
document.write("<small><font color='#6C3600' font size='2' face='Arial'>"+welcome)
// End -->