$(document).ready(function(){

  //TOUTES LES FONCTIONS JQUERY SPECIFIQUES DU SITE
  
  //mes destinations  
  $(".md_1").hover(
    function(){$("#dest").fadeIn('fast');}
    ,
    function(){$("#dest").fadeOut('normal');}
  );
  
  //phrase par défaut de form_que
  var form_que_txt_defaut = $("#form_que #LIBELLE").html();  
  if (form_que_txt_defaut.length > 0) {
      $("#form_que").click(function(){
          
          if (($(this).find("#LIBELLE").html()) == form_que_txt_defaut) {
              $(this).find("#LIBELLE")
                  .css({color:"#575757"})
                  .html("");
          }
      }); 
  } 
  
  //limite de 110 caractères
  var fq_car_max = $("#fq_restant").html();
  $("#LIBELLE").bind("keyup change", function(){
      var fq_restant = fq_car_max - $(this).val().length;
      if (fq_restant < 0) {
          $(this).val($(this).val().substr(0, fq_car_max));
          fq_restant = 0;
      }
      fq_restant *= 1;
      fq_restant += '';
      $("#fq_restant").html(fq_restant);
  });  
  $("#editeur #LIBELLE").trigger('change');
  
    
  //e-commerce
  //$('#articles').load('selection.php'); 
});