function onPostSuccess(data){
	$("#calendar").empty().append(data);
}
$(document).ready(function(){
	$("#month").change(function(){
		$.post(
			"/system/modules/calendar.php",
			{
				month: $("#month").val(),
				year: $("#year").val()
			},
			onPostSuccess
		);
	});
	$("#year").change(function(){
		$.post(
			"/system/modules/calendar.php",
			{
				month: $("#month").val(),
				year: $("#year").val()
			},
			onPostSuccess
		);
	});
	$("#submitDate").click(function(event){
		event.preventDefault();
		window.location.href = "/news/?y=" + $("#year").val() + "&m=" + $("#month").val();
	});
});