// ** Active le menu superfish



$(document).ready(function() { 
	if (mode_superfish == 'classic') {
		$('#menu_haut ul.sf-menu').supersubs({ 
			pathClass: 	'current',
			minWidth:    min_superfish,		// minimum width of sub-menus in em units 
			maxWidth:    max_superfish,		// maximum width of sub-menus in em units 
			extraWidth:  1					// extra width can ensure lines don't sometimes turn over 
											// due to slight rounding differences and font-family 
		}).superfish();  // call supersubs first, then superfish, so that subs are 
		// not display:none when measuring. Call before initialising 
		// containing tabs for same reason. 
	}
	else if (mode_superfish == 'navbar') {
		$('#menu_haut ul.sf-menu').superfish({
			pathClass: 'current'
		}); 
	}
});

// ** Hover
/*
$('.sf-menu li').hover(function(){
		$(this).children().css('color','#000');
	}, function () {
		$(this).children().css('color','#fff');
	}
);
*/