 $(document).ready(function(){
    $(".mem").hover(
      function () { $(this).children(".mem_comment").show(300); }, 
      function () { $(this).children(".mem_comment").fadeOut(300); }
    );
});
