$(document).ready(function() {
    $('#my-carousel li').hover(function(){  
    $(this).children('.comment').stop().animate({bottom: "0px"});
    }  
    ,function(){  
    $(this).children('.comment').stop().animate({bottom: '-142px'}, 600);}); 
    
});
