$(document).ready( function() {
  $('#jour2').hide();
  $('#jour3').hide();
  
  $('#onglet1').click(function(){
    $('#jour2').hide();
    $('#jour3').hide();
    $('#jour1').show();    
  });
  
  $('#onglet2').click(function(){
    $('#jour1').hide();
    $('#jour3').hide();
    $('#jour2').show();    
  });
  
  $('#onglet3').click(function(){
    $('#jour1').hide();
    $('#jour2').hide();
    $('#jour3').show();    
  });
  
  $('.jour').each(function(){
    $(this).find('.contenuExpand').hide();
  });
  
  $('.jour .expand').each(function(){
    $(this).append(' <strong class="btnOuvrirFermer">[+]</strong>');
    
    $(this).find('strong').
    css('cursor', 'pointer').
    click(function(){
      if($(this).parent().next().is(':visible')){
        $(this).text('[+]');
        $(this).parent().next().slideUp();
      }
      else{
        $(this).text('[-]');
        $(this).parent().next().slideDown();
      }
    });
  });
  
  $('input[type=checkbox]').click(function(){
    var name = $(this).attr('name');
    var ceChamp = this;
    $('input[name="'+ name +'"]').each(function(){
      if(this != ceChamp)  $(this).removeAttr('checked');
    });
  });
});