$(document).ready(function() {
  $('.gallery .item').mouseover(function() {
    $(this)
    .find('.overlay')
    .show();
  });
  $('.gallery .item').mouseout(function() {
    $(this)
    .find('.overlay')
    .hide();
  });
});
