$(document).ready(function() {
	//hide the submenu
	$('.closed').each(function(){
		if(!($(this).hasClass('active-trail'))){
			$(this).siblings().hide();
		}
	});
	
	$('.page-news .current-year').siblings().show();
	
	//on click open the menu
	$('.closed').click(function(){
		$(this).siblings().toggle('slow');
	});
});