$(document).ready(function(){
	setEventActions();
});

function reloadInfo(m,y){
	var objCss = {}, aCss = ["padding-left","padding-bottom"], i;
	
	$.ajax({
		type: "GET",
		url: "events_ajax.htm",
		data: "m=" + m + "&y=" + y,
		success: function(c){
			$('#sapient_bodyLeftMenuContainer').html(c);
			nameSpace.modules.balloon.init();
			setEventActions();
		},
		error: function(){}
	});
}

function setEventActions(){
	$('.changeMonth').click(function(){
		reloadInfo( $(this).attr('m'), $(this).attr('y') );
	});
}
