$(document).ready(function() {
    $("#menu_gauche dd").show();
	$("#menu_gauche dd.noactif").hide();
    $("#menu_gauche dt.toggle > a").click( 
		function() { $("#menu_gauche dd").hide(); $(this).parent().next().show();return false; }/*, 
		function() { alert('2'); $(this).parent().next().hide(); } */
    );
});

