<!--
function greeting() {
Now = new Date()
Hour = Now.getHours();
if (Hour < 5)
msg ="Can't sleep? Well, we trust this web page will help you pass the time!"
else if(Hour <12)
msg ="Good morning and welcome to the Castle Vets web site."
else if(Hour < 18)
msg ="Good afternoon and welcome to the Castle Vets web site."
else if (Hour < 24)
msg ="Good evening. We hope you have had a pleasant day?"
return( msg )
}
document.write("<small><font color='669900' face='Arial' size='1'>");
document.write(greeting())
//-->