$(document).ready(function(){
  var open = true;  
  
  $("#slideout").click(function(){
    if(open)
    {
      $('#slideout').html('Afficher >');
      $('#content').animate({
      marginLeft: -800,
      opacity:  0
      }, 600);

    }
    else
    {
      $('#slideout').html('Masquer >');
      $('#content').animate({
      marginLeft: 0,
      opacity:  1
      }, 600);
    }
    
    open = !open; 
  });
});

