//////////////////////////////////////////////////////////////////////////////
//	Author: 		Andrew Dennison											//
//	Date: 			31/08/03												//
//	Description:	A greeting module for the frontpage of the site			//
//////////////////////////////////////////////////////////////////////////////

////////////////////////////////
//	Global Variables


//////////////////////////////////////////////////////////////////////////////
//	Method: 		Andrew Dennison											//
//	Date: 			31/08/03												//
//	Name:			Greeting_Display										//
//	Description:	Displays an appropriate greeting						//
//	Parameters:		none													//
//	Returns:		none													//	
//////////////////////////////////////////////////////////////////////////////
function Greeting_Display() 
{
	today = new Date();	
	hour = today.getHours();
		
	if (hour < 12)
	{   
		document.write("Good Morning");
	}
	else if (hour < 18)
	{
		document.write("Good Afternoon");
	}
	else
	{
		document.write("Good Evening");
	}
	
	document.write(" and welcome to Stafford RCMCC");
	
}	// Greeting_Display