$(function(){		
    $("li > ul").hide();
	$('li.premier ul').show();
	$('ul#sondage a').show();
	$('h1').each(function(){
		$(this).hover(function(){
			$(this).next('ul').show('medium');
			$(this).parent().addClass('AnneeDepliee');
		},function(){});		
	});
	$('h1').each(function(){
		$(this).click(function(){
			$(this).next('ul').toggle('medium');
			$(this).parent().toggleClass('AnneeDepliee');
		});		
	});
});