/*****************************************************
** Description: General web site JavaScript functions
** Author: Gareth Wiseman (some scripts may have originated from other sources 
** 			and should be listed where so)
** Date created: 11 Apr 2004
*****************************************************/

function displayDate() {
	dayName = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday") 
	monName = new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sept", "Oct", "Nov", "Dec") 
	now = new Date 
	document.write(dayName[now.getDay()] + " " + now.getDate() + " " + monName[now.getMonth()] + " " + now.getFullYear() ); 
}
