$(document).ready(function(){
	//On recupere la hauteur de la fenetre du navigateur dans une variable
	var documentHeight = $(document).height();
	
	//on applique la taille du document sur la div bg_ombre
	$('.bg_ombre').height(documentHeight);
	
	$(document).resize( function() {
		var documentHeight = $(document).height();
		$('.bg_ombre').height(documentHeight);
	});
	
	
    $(".navigation li.sous-menu-title > a").click( function () {
        if ($(this).next("ul.sous-menu:visible").length != 0) {
            $(this).next("ul.sous-menu").slideUp("normal", function () { $(this).parent().removeClass("open") });
        }
        else {
            $(".navigation ul.sous-menu").slideUp("normal", function () { $(this).parent().removeClass("open") });
            $(this).next("ul.sous-menu").slideDown("normal", function () { $(this).parent().addClass("open") });
        }
    });    	
	


	if($('.sous-menu-title').hasClass('open')){
		$('.open').find('.sous-menu').show();
	}

	
	
});
