function today() {
	now=new Date();
	
	date=now.getDate();
	
	month=now.getMonth();
	monthName="January";

	if (month==0) monthName="January";
	else if (month==1) monthName="February";
	else if (month==2) monthName="March";
	else if (month==3) monthName="April";
	else if (month==4) monthName="May";
	else if (month==5) monthName="June";
	else if (month==6) monthName="July";
	else if (month==7) monthName="August";
	else if (month==8) monthName="September";
	else if (month==9) monthName="October";
	else if (month==10) monthName="November";
	else if (month==11) monthName="December";
			
	year=now.getFullYear();
		
	return monthName + " " + date +", " + year;
}
