function updateCalendario(fecha,fecha_cargada) {
	$.ajax({
		   type: "POST",
		   url: "update_calendario.php",
		   data: "fecha="+ fecha + "&fecha_cargada=" + fecha_cargada,
		   success: function(response){
				$('#calendario').html(response);
			}
		 });
}

function showEvento(fecha) {
	$.ajax({
		   type: "POST",
		   url: "show_evento.php",
		   data: "fecha="+ fecha,
		   success: function(response){
				$('#evento_destacado').html(response);
			}
		 });	
}
