$(function(){
  $(".items").hover(function(){
    
    $(this).find(".popup").fadeIn(600);
    height = $(this).find(".popup").height();
    $(this).find(".popup").css("margin-top:" + height / 2);
    
    $(this).mouseleave(function(){
           $(this).find(".popup").fadeOut(100);
    });
  });
});


