<!-- 
dayName = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
dayEnd  = new Array ("th","st","nd","rd","th","th","th","th","th","th","th")
monName = new Array ("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")
now = new Date()
nowDate = now.getDate()
nowHours = now.getHours()

function showgoodDay() {
 if (nowHours > 17) goodDay = "Good Evening. "
 else {
  if (nowHours > 11) goodDay = "Good Afternoon. "
  else {
   if (nowHours> 4) goodDay = "Good Morning. "
   else {
    goodDay = "Good Morning - Night Owl! "
   }
  }
 }
return goodDay
}	
function showtimeDate() {
 if (nowDate > 30) lastDigit = nowDate - 30
 else {
  if (nowDate > 20) lastDigit = nowDate - 20
  else {
    if (nowDate > 10) lastDigit = 9
    else lastDigit = nowDate
  }
 }
 nowMins = now.getMinutes()
 if (nowMins < 10) nowMins = "0" + nowMins
 return "Its <b>" + nowHours + ":" + nowMins + "</b> on " + dayName[now.getDay()] +
  " the " + nowDate + dayEnd[lastDigit] + " of " + monName[now.getMonth()] + " " + now.getYear() + "."
}
// -->
