$(document).ready(function(){
  $("#frm_events").submit(function() {
    $("#textoeventos").ajaxStart(function() {
      $(this).text("cargando...");
    });
    ano = $("#Year").attr("value");
    mes = $("#Month").attr("value");
    $("#calendario").load("html/calendar.html?Month="+mes+"&Year="+ano);
    $("#textoeventos").load("html/sh_eventos.html?Month="+mes+"&Year="+ano);
    $("#textoeventos").ajaxStop(function() {
      $("#frm_events").submit(function() {
        $("#textoeventos").ajaxStart(function() {
          $(this).text("cargando...");
        });
        ano = $("#Year").attr("value");
        mes = $("#Month").attr("value");
        $("#calendario").load("html/calendar.html?Month="+mes+"&Year="+ano);
        $("#textoeventos").load("html/sh_eventos.html?Month="+mes+"&Year="+ano);
        return false;
      });
    });
    return false;
  });
});
