$(document).ready(function() {
$('.button1').click(function(){
    $('.year').hide();
    $(this).parent().find('.year').toggle();
    
})
});
