<!-- 
					// A greeting and the time/date
					function process(){} today = new Date()
					
					if(today.getMinutes() < 10) {
					pad = "0"}
					else
					pad = "";
					
					if((today.getHours() < 12) && (today.getHours() >= 0))
					{ 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")}
															
					// end hiding contents -->