$(document).ready(function() {
  /** HEADER CONNEXION **/
  $('#header_connexion_login').find('input').focus(function() {
    if($(this).val() == 'Login') {
      $(this).val('');
    }
  }).blur(function() {
    if($(this).val() == '') {
      $(this).val('Login');
    }
  });
  $('#header_connexion_password').find('input').focus(function() {
    if($(this).val() == 'Password') {
      $(this).val('');
    }
  }).blur(function() {
    if($(this).val() == '') {
      $(this).val('Password');
    }
  });
  
  /** MENU **/
  $('#header_menu_prestations').hover(function() {
    $('#header_menu_prestations_liste').stop(true, true).fadeIn();
  }, function() {
    $('#header_menu_prestations_liste').stop(true, true).fadeOut();
  });
  $('#header_menu_produits').hover(function() {
    $('#header_menu_produits_liste').stop(true, true).fadeIn();
  }, function() {
    $('#header_menu_produits_liste').stop(true, true).fadeOut();
  });
  $('#header_menu_formations').hover(function() {
    $('#header_menu_formations_liste').stop(true, true).fadeIn();
  }, function() {
    $('#header_menu_formations_liste').stop(true, true).fadeOut();
  });
});
