function showMonth(oldMonth, newMonth) {
	$("#cal_" + oldMonth).hide();
	$("#cal_" + newMonth).show();
}
