// JavaScript Document

		
		// Get the time
		
			function theTime() {
				var date = new Date();
				var hours = date.getHours();
				
				
				if ( (hours > 5) && (hours < 12) ) {
					document.write("<strong>Good morning</strong>");
				}
				else if ( (hours >= 12) && (hours < 18) ) {
					document.write("<strong>Good afternoon</strong>");
				}
				else {
					document.write("<strong>Good evening</strong>");
				}
			}
		