$(document).ready(function(){
    $('a.yearlink').click(function(){
      $(".active").removeClass("active");
      $(this).addClass("active");
      $('#cal').html("Зараз буде…<br/><img src=\"/static/img/loader.gif\"/> ");
      $.get($(this).attr("href"), function(data) {
          $('#cal').hide();
          $('#cal').html(data);
          $('#cal').slideDown(700);
      });
    return false;
});
});

