// JavaScript Document

  var d = new Date();
  var time = d.getHours()
  
  if (time<12) {document.write("<h1>Good morning and welcome to Jadrallypix.</h1>");
  }
  
  else if (time>11 && time<18)
  {document.write("<h1>Good afternoon and welcome to Jadrallypix.</h1>");
  }
  
  else {document.write("<h1>Good evening and welcome to Jadrallypix.</h1>");
  }
 