jQuery(document).ready(function(){
  
  jQuery('.product_popup').click(function(){
    jQuery(this).fadeOut('fast')
  });
  
  jQuery('.item > img').click(function(){
      jQuery(this).parent().find('.product_popup').fadeIn('slow')
      }, function(){
        jQuery(this).parent().find('.product_popup').fadeOut('fast')
     });
});

