/*@cc_on @*/
// JavaScript Document
// Copyright 2007 - Just Print IT! All rights reserved. www.just-printit.com

<!-- Begin
  day = new Date()
  hr = day.getHours()
  if ((hr == 1) || (hr == 2) || (hr == 3) || (hr == 4) || (hr == 5) || (hr == 6) || (hr == 7) || (hr == 8) || (hr == 9) || (hr == 10) || (hr == 11))
  	document.write("<p class='salutation'>Good Morning - Thank you for stopping by.</p>")
  if ((hr == 12) || (hr == 13) || (hr == 14) || (hr == 15) || (hr == 16) || (hr == 17) || (hr == 18))
  	document.write("<p class='salutation'>Good Afternoon - Thank you for stopping by.</p>")
  if ((hr == 19) || (hr == 20) || (hr == 21) || (hr == 22) || (hr == 23) || (hr == 0))
  	document.write("<p class='salutation'>Good Evening - Thank you for stopping by.</p>")
// End -->

