$(function() {
  $(".hover-image").hover(function() {
    $(this).find('img').stop(true,false).animate({ opacity: 0.7 }, 300);
  },
  function () {
    $(this).find('img').stop(false,true).animate({ opacity: 1.0 }, 300);
  });
});
