		// on initialise le script qui anime le menu
		jQuery(function(){
			 $("ul.sf-menu")
			  .superfish({ 
		    animation:   {height:'show'},
            speed:       'low'
			   }) 
			  });
			  
			  //script qui gére le menu accordéon, celui à gauche
			      $(document).ready( function () {
        $("div.subMenu:not('.open_at_load')");
        $("div.toggleSubMenu > span").click( function () {
            if ($(this).next("div.subMenu:visible").length != 0) {
                $(this).next("div.subMenu").slideUp("normal", function () { $(this).parent().removeClass("open") } );
            }
            else {
                $("div.subMenu").slideUp("normal", function () { $(this).parent().removeClass("open") } );
                $(this).next("div.subMenu").slideDown("normal", function () { $(this).parent().addClass("open") } );
            }
            return false;
        });
    });
	


