<!--
function greeting() {
Now = new Date()
Hour = Now.getHours();
if (Hour < 5)
msg ="Can't sleep? Well, please enjoy your visit to the Latouros Quarries web site."
else if(Hour <12)
msg ="Good morning and welcome to the Latouros Quarries web site."
else if(Hour < 18)
msg ="Good afternoon and welcome to the Latouros Quarries web site."
else if (Hour < 24)
msg ="Good evening. We hope you have had a pleasant day."
return( msg )
}
document.write("<small><font color='FFFFFF' face='Arial' size='3'>");
document.write(greeting())
//-->