// JavaScript Document

	function greetingText()
		{
			today = new Date()		
		
			if((today.getHours() < 12) && (today.getHours() >= 1))
			{  return "Good Morning!" }
		
			if((today.getHours() >= 12) && (today.getHours() < 18))
			{  return "Good Afternoon!" }
		
			if((today.getHours() >= 18) && (today.getHours() <= 24))
			{  return "Good Evening!" }
			
		}
