/* This is a script file by:  Jim Needham
                              Vector Graphics
                              130a West Heintz Street
                              Molalla, Oregon 97038
                   Filename:  Greeting.js
                    Created:  8:56 PM 12/30/2000
                    Revised:  8:56 PM 12/30/2000
*/
    today = new Date()
    if(today.getMinutes() < 10){ 
        pad = "0"}
    else  
    pad = "";
  document.write    ;
   if((today.getHours() >=6) && (today.getHours() <=9)){
document.write("<br><center><FONT SIZE=2 color=blue>Hope you are having a safe morning!</FONT></center>")
}
   if((today.getHours() >=10) && (today.getHours() <=11)){
document.write("<br><center><FONT SIZE=2 color=magenta>Hope you are having a safe morning!</FONT></center>")
}
    if((today.getHours() >=12) && (today.getHours() <=16)){
document.write("<br><center><FONT SIZE=2 color=magenta>Hope you are having a safe afternoon!</FONT></center>")
}    
    if((today.getHours() >=17) && (today.getHours() <=24)){
document.write("<br><center><FONT SIZE=2 color=red>Hope you are having a safe evening!</FONT></center>")
}
    if((today.getHours() >=0) && (today.getHours() <=3)){
document.write("<br><center><FONT SIZE=2 color=red>Hope you're in a safe place this time of night!</FONT></center>")
}
    if((today.getHours() >=4) && (today.getHours() <=5)){
document.write("<center><FONT SIZE=2 color=red>Wow! You're up early!!</FONT></center>")
}