
/**
 * Outputs the date in MMMMMMMMM dd, YYYY fashion
 * ie: April 10, 2009
 */
function getFormattedDate() {
	myDate = new Date();
	myMonth = myDate.getMonth();
	switch( myMonth ) {
		case(0):
			myMonth = "January";
			break;
		case(1):
			myMonth = "February";
			break;
		case(2):
			myMonth = "March";
			break;
		case(3):
			myMonth = "April";
			break;
		case(4):
			myMonth = "May";
			break;
		case(5):
			myMonth = "June";
			break;
		case(6):
			myMonth = "July";
			break;
		case(7):
			myMonth = "August";
			break;
		case(8):
			myMonth = "September";
			break;
		case(9):
			myMonth = "October";
			break;
		case(10):
			myMonth = "November";
			break;
		case(11):
			myMonth = "December";
			break;
	}
	var myParsedDate =  myMonth +' '+ myDate.getDate() +', '+ myDate.getFullYear();
	return myParsedDate;
}

