$(function()
{
  var setSpoiler = function()
  {
    // Ouverture
    $('.spoiler').click(function()
    {
      var header = $(this).children('.spoiler-header');
      
      var content = $(this).children('.spoiler-content');
      if (content.css('display') != 'none')
      {
        content.css('display', 'none');
        header.html('Spoiler - Cliquez pour afficher');
      }
      else
      {
        content.css('display', 'block');
        header.html('Spoiler - Cliquez pour cacher');
      }
    });
  }();
});
