function calendario(mes,ano){
	if(!mes){mes=0;}
	if(!ano){ano=0;}
	$.ajax({
		type: "GET",
		url: "/calendario.php",
		data: "mes="+mes+"&ano="+ano,
		dataType: "html",
		beforeSend: function(){
		},
		complete: function(){	
		},
		success: function(msg) {
			var response=msg; 
			$("#calendar").html(response);
		}
	});

}
