$(document).ready(function() {
  //$('.year-list:not(.all-years-list .year-list:first)').hide();
  $('.year-list').hide();
  $('.all-years-list').children('span').children('a').click(function() {
    $(this).parent().next('.year-list').toggle('blind');
    return false;
  });
});
