$('.js-month').on('click', function(){
    $(this).parent().find('ul').toggle('fast');
    $(this).toggleClass('active');
  });