<!--Begin
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 + ". Welcome to Rolling Rock Ranch!");
document.write(welcome);
// End-->