/*
   This script came from the 24 hour JavaScripts Site
located at http://www.javascripts.com.  It is brought to 
  you by Eric Jarvies, Lewis Sellers, Giuseppe Lombardo, 
          Kurt Anderson, and David Medinets. 
*/
  today = new Date()
    if(today.getMinutes() < 10){ 
	pad = "0"
    }
    else  
	pad = "";
  document.write    ;


if((today.getHours() >=6) && (today.getHours() <=9)){
document.write("<center><FONT color=blue>Good Morning! </FONT></center>")
}

   if((today.getHours() >=10) && (today.getHours() <=11)){
document.write("<center><FONT color=green>Good Morning </FONT></center>")
}

    if((today.getHours() >=12) && (today.getHours() <=16)){
document.write("<center><FONT color=black>Good Afternoon </FONT></center>")
}    

    if((today.getHours() >=17) && (today.getHours() <=23)){
document.write("<center><FONT color=red>Good Evening!</FONT></center>")
}

    if((today.getHours() >=0) && (today.getHours() <=4)){
document.write("<center><FONT color=red>You're up late night crawler!</FONT></center>")
}

    if((today.getHours() >=4) && (today.getHours() <=6)){
document.write("<center><FONT color=purple>Wow! You're up early!!</FONT></center>")
}