function resetMenu () {
	var url = window.location.href;
	var month;
	var year;
	url.match(/\/notices\/(\d{6})\//);
	
	year = RegExp.$1.substr(0,4);
	month = RegExp.$1.substr(4);
	if (year > 1996 && month >= 7) {
		month++;
		month = month.toString();
		if (month.length == 1) {
			month = "0"+month;
		}
	}
	document.getElementById('year').value = year;
	document.getElementById('issue').value = month;	
	document.getElementById('body').style.display = "block";
}