function selectYearForCalendar() {
	$('a.tebleListMonthAll').live('click', function () {
		var href = $(this).attr('href');
		var option = $('#bySeason option:selected').attr('id');
		var combined = href + '?id=' + option;
		$('a.tebleListMonthAll').attr('href', combined);
	});
}
