// JavaScript Document


/* Fonction Accordion pour archives */

$(document).ready(function() {
	
	$('div.years div').hide();
	$('div.years div:first').show();
	
	
	/* animation de l'année en cours lors du chargement */
	$('div.years .chapeauArchives:first').animate( {
		paddingLeft:"30px"
	} );
	$('div.years .chapeauArchives:first').animate( {
		paddingLeft:"10px"
	} );
	
	
	$('div.years> .chapeauArchives').click(function() {
		var $nextDiv = $(this).next();
		var $visibleSiblings = $nextDiv.siblings('div:visible');
		if ($visibleSiblings.length ) {
			$visibleSiblings.slideUp('slow', function() {
				$nextDiv.slideToggle('slow');
			});
		} else {
			$nextDiv.slideToggle('slow');
		}
	});
});
