jQuery(document).ready(function(){
    jQuery("#menu_gauche").find('li').hover(function(){
	jQuery(this).find('ul.nav-2').stop(false, true).fadeIn(400);
    },function(){
	jQuery(this).find('ul.nav-2').stop(false, true).fadeOut(400);
    });
});

