function getCalendar(month, year){
	$('#calendar').stop();
	$('#calendar').animate({opacity:0}, 300);
	$.ajax({ 
		method: "get",
		url: BASEURL + '/news/calendar/',
		data: "month=" + month + "&year=" + year + "&iefix=" + new Date().getTime(),
		success: function(response){
			$('#calendar').html(response);
			$('#calendar').animate({opacity:1}, 300);

			$('#calendar td.cal_event').each(function(){
				$('li:last', $(this)).css('border', 'none');
			});			
			$('#calendar td.cal_event').tooltip({
				bodyHandler: function() {
					return $(this).find('div.cal_xtra').html();
				},
				showURL: false,
				fixPNG: true,
				extraClass: "calEvents"
			});
		}
	});
}