$(function(){
  $('.tooltip').tooltip({
    tip: '#tooltip',
    position: 'bottom center',
    effect: 'slide',
  });
  var txt_mail = 'Adresse e-mail';
  var txt_passwd = 'Mot de passe';
  $('#email').focus(function(){if($(this).val() == txt_mail)$(this).val('');}).blur(function(){if($(this).val() == '')$(this).val(txt_mail);});
  $('#passwd').focus(function(){$(this).val('');});
  $('#linkSupport').fancybox({
    'width': 820,
    'height' : 580,
    'type' : 'iframe',
    'centerOnScroll' : 'true',
    'titleShow' : 'false'
  });
});