$(function(){

$('.wrap').hover(function(){
  $(this).children('.comment').stop().animate({"bottom": '0px'}, 200);}
   
  , function(){
  $(this).children('.comment').stop().animate({"bottom": '-100px'}, 200);});

});