function formatUpdatedDate(fileDate){
	var modDate = new Date(fileDate);
	var formatStr = "F j, Y";
	return formatDate(modDate, formatStr);
}
function formatDate(inputDate, formatStr){
	var monthArray = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
	// Format strings are based on php date formats
	switch(formatStr){
		case "F j, Y": // January 1, 2005
		return monthArray[inputDate.getMonth()] + " " + inputDate.getDate() + ", " + inputDate.getFullYear();
	}
}



