function greeting() {
		today = new Date();

    if(today.getMinutes() < 10){ 
        pad = "0"}
    else  
    pad = "";
  document.write    ;if((today.getHours() >=0) && (today.getHours() <=3)){
document.write("<center>Wow, you're up late!&nbsp;&nbsp;Grab some hot chocolate and come on in!</center>")
}
    if((today.getHours() >=4) && (today.getHours() <=6)){
document.write("<center>You're up early!&nbsp;&nbsp;We're a great place to start the day!</center>")
}
    if((today.getHours() >=7) && (today.getHours() <=9)){
document.write("<center>Good Morning, and Welcome to our web site!</center>")
}
    if((today.getHours() >=10) && (today.getHours() <=11)){
document.write("<center>Good Morning!&nbsp;&nbsp;Come on in and see what's new!</center>")
}
    if((today.getHours() >=12) && (today.getHours() <=12)){
document.write("<center>Welcome!&nbsp;&nbsp;Grab a bite to eat and join us for lunch!</center>")
}    
    if((today.getHours() >=13) && (today.getHours() <=16)){
document.write("<center>Good Afternoon!&nbsp;&nbsp;Glad you could take a break with us!</center>")
}    
    if((today.getHours() >=17) && (today.getHours() <=23)){
document.write("<center>Good Evening!&nbsp;&nbsp;Sit back, relax, and let's talk flying!</center>")
}
}