<!-- // 
function localDate() {
	// Array of month Namesvar
	monthNames = new
	Array("Jan","Feb","March","April","May","June","July","Aug","Sept","Oct","Nov","Dec");
	var now = new Date();
	document.write(monthNames[now.getMonth()] + " "+ now.getDate() + ", " + now.getFullYear() );
}
// -->