$(function(){

  $('li.titre ol').hide();
  
  $('li.titre a').click(function(){
    if($(this).next('ol li').is(':hidden')){
      $(this).next('ol li').slideDown('slow');
    }
    else{
      $(this).next('ol li').slideUp('slow');
    }
  });
    
});
