jQuery(function(){
$(".fadeBtn").hover(
  function () {
    $(this).fadeTo("normal", 0.65);
  },
  function () {
    $(this).fadeTo("normal", 1);
  }
);

})