$(document).ready(function() {

//Afficher La fenêtre d'espace client.
$("#client a").toggle(function() {						   
    $("#connexion").animate({
      height: 'show',
      opacity: 'show',
    }, 'slow');
  }, function() {
    $("#connexion").animate({
      height: 'hide',
      opacity: 'hide'
    }, 'slow');
  });

});
