$(function() {
  $('.product').click(function() {
    window.location = $('.more-info', this).attr('href')
  });
});

