function process(){}

  today = new Date()

  if(today.getMinutes() < 10) {
    pad = "0"}
  else
    pad = "";
  
  if((today.getHours() <= 11) && (today.getHours() >= 00))
  {  document.write("Good Morning")}

  if((today.getHours() >= 12) && (today.getHours() < 18))
  {  document.write("Good Afternoon")}

  if((today.getHours() >= 18) && (today.getHours() <= 23))
  {  document.write("Good Evening")}
