$(document).ready(function(){
	$('.year').click(function(){
		$(this).next().slideToggle();
	}).next().hide();
});

