$(document).ready(function() {

	$('h2').click(function() {
				
		if ($(this).attr('class') == 'off') {
				
			$('#ColLeft > #Accordeon > h2').each(function(i) {
			
				if ($(this).attr('class') != 'display') { 
				
					$(this).attr({'class' : 'off'});
					$('#Accordeon' + this.id).slideUp();
									
				}
			
			});
			
		}
	
		if ($(this).attr('class') != 'display') { 
			
			if ($(this).attr('class') == 'off') {
	
				$('#Accordeon' + this.id).slideDown();
				$(this).attr({'class' : 'on'});
				
			}
			
			else {
			
				$('#Accordeon' + this.id).slideUp();
				$(this).attr({'class' : 'off'});
				
			}
			
		}
		
	});

});
