
function changeMonths(currentMonth,currentYear,moveDirection){

	$("#agenda-container").hide();

	jQuery.ajax({
		type: "POST",
		url: "/?m=agenda&action=FrontDisplayAjax",
		data: "currentmonth="+currentMonth+"&currentyear="+currentYear+"&moveDirection="+moveDirection,
		success: function(response){
			$("#agenda-container").html(response);
			$("#agenda-container").show("slow");
		}
	});
	
	
	return false;
}
