// -------------------------------- jQuery -------------------------------------
jQuery(document).ready(function () {
  // gestion survol menu principal
  jQuery('.menumainjs').hover(function () {
  var refsite="../images_res/template/";
  var dataimg = jQuery(this).attr('rel')+ "_ON.jpg";
  jQuery(this).attr('src', refsite+dataimg);
  }, function () {
  //
  var refsite="../images_res/template/";
  var dataimg = jQuery(this).attr('rel')+ "_OFF.jpg";
  jQuery(this).attr('src', refsite+dataimg);
  });
  // fin de hover
  // formulaire de contact : bouton "envoyer"
  jQuery('#valiformdubas').hover(function () {
  var refsite="../images_site/Image/articles/contact/";
  var dataimg = "_C_envoyer_ON.jpg";
  jQuery(this).attr('src', refsite+dataimg);
  }, function () {
  //
  var refsite="../images_site/Image/articles/contact/";
  var dataimg = "_C_envoyer_OFF.jpg";
  jQuery(this).attr('src', refsite+dataimg);
  });
  // fin de hover
  // formulaire de contact : bouton "pièces jointes"
  jQuery('#piecejointe').hover(function () {
  jQuery(this).css( { background: '#ffffff', color: '#032666' } );
  jQuery(this).css({ cursor: "pointer" });
  }, function () {
  //
  jQuery(this).css( { background: '#032666', color: '#ffffff' } );
  jQuery(this).css({ cursor: "auto" });
  });
  // fin de hover
});
// ------------------ nouvelle fonction pour  jQuery ----------------------------
// initialisation tétière après chargement
jQuery.fn.tetierint = function() {
  //
};
// -----------------------------------------------------------------------------


