 <!-- hide javascript

document.write("<STRONG><FONT size=2>");
day = new Date();
hr = day.getHours();
if ((hr >= 1) && (hr <=5)) {
 t = "Time to plan that trip  ?";}
if ((hr >= 6) && (hr <=11)) {
 t = "Be nice to be skiing now!";}
if ((hr >= 12) && (hr <=16)) {
 t = "Wish I was hiking now !";}
if ((hr >= 17) && (hr <=21)) {
 t = "Miss the out doors !";}
if ((hr == 22) || (hr ==23)) {
 t = "Like to be under the stars now...";}
if (hr==0) {
 t = "It's past midnight... time to be under the stars";}
document.write(t);
document.write("</FONT></STRONG>");

// done hiding -->

 