
$(document).ready(function () {
  $('.picture a').hover(function () {
    $(this).find('ins').stop().fadeTo('normal', 0.75);
  }, function () {
    $(this).find('ins').stop().fadeTo('normal', 0);
  });
});

