function Time_of_Day()
{

	Now = new Date();


	yourHour = Now.getHours();


	if(yourHour < 12)
	{
		document.write('Good Morning!');
	}


	if(yourHour > 17)
	{
		document.write('Good Evening!');
	}	


	if((yourHour >11) && (yourHour < 18))
	{
		document.write('Good Afternoon!');
	}

}
