var date=new Date(); // Gets the full date!
			var day=date.getHours(); // Gets the hours!
			
			if(day<=11) {
			document.write('Good Morning'); // If it's before 12 PM then display this!
			} else if(day<18){
			document.write('Good Afternoon'); // After 12 PM display this!
			} else {
			document.write('Good Evening'); // After 6 PM display this!
			}