$(document).ready(function() {

	$('.historique').click(function() {
	
		if ($(this).attr('class') == 'historique off') {
	
			$('#Historique > .historique').each(function(i) {
								
					$(this).removeClass('on');
					$(this).addClass('off');
					$('#Accordeon' + this.id).slideUp();
	
			});
			
		}

		if ($(this).attr('class') == 'historique off') {
	
			$('#Accordeon' + this.id).slideDown();
			$(this).removeClass('off');
			$(this).addClass('on');
			
		}
		
		else {
		
			$('#Accordeon' + this.id).slideUp();
			$(this).removeClass('on');
			$(this).addClass('off');
			
		}
		
	});
		
});
