today = new Date();
months = new Array("january", "february", "march", "april", "may", "june", "july", "august", "september", "october", "november", "december")
if(theMonth == undefined){
	oMonth = today.getMonth();
	var theMonth = months[oMonth]
}
if(theDay == undefined){
	var theDay = today.getDate();
}
matchSelectValue(datesForm.fMonth, theMonth);
matchSelectValue(datesForm.fDay, theDay);
