jQuery(function($) {
	$('#nav li ul').hide();
	var path = location.pathname.substring(1);
	if( path == '' ) path = 'acceuil';
	$('#nav a[href$="' + path + '"]').addClass('active').siblings("ul").slideDown();
	$('#nav a[href$="' + path + '"]').parents("ul").show();
});