function getCalendar(month, year, lang){
	$('#cal').stop();
	$('#cal').animate({opacity:0}, 300);
	$.ajax({ 
		method: "get",
		url: "app/controllers/calendarController.php",
		data: "month=" + month + "&year=" + year + "&lang=" + lang + "&iefix=" + new Date().getTime(),
		success: function(response){
			$('#cal').html(response);
			$('#cal td.cal_event').each(function(){
				$('li:last', $(this)).css('border', 'none');
			});
			$('#cal').stop();
			$('#cal').animate({opacity:1}, 300);
			$('#cal td.cal_event').tooltip({
				bodyHandler: function() {
					return $(this).find('div.cal_xtra').html();
				},
				showURL: false,
				fixPNG: true,
				extraClass: "calEvents"
			});
		}
	});
}
