jQuery(document).ready(function($) {

	// Contenu Accordéon
	(function() {
		
		$('.accordeon').each(function() {
			var contents = $(this).children('div');
			contents.hide();
			contents.first().show();
			
			$(this).children('h3').click(function() {
				var content = $(this).parent().children('div.' + $(this).attr('class'));
				if (content.css('display') == 'none') {
					contents.hide('slow');
					content.show('slow');
				}
			});
		});
		
	})();

});
