$(document).ready(function(){
    
    $(".foldablebloc > ul").hide();
    
    $(".foldablebloc h2").hover(
      function () {
        $(this).css("cursor","pointer");
        $(this).css("background-color","#c9dcf1");
      },
      function () {
        $(this).css("cursor","auto");
        $(this).css("background-color","#ffffff");
      }
    );

    $(".foldablebloc h2").click(
      function () {
        $(this).next("ul").slideToggle("slow");
        $(this).toggleClass("folded");
      }
    );

  });