$(document).ready(function() {
  $(".comment_comment").autogrow({
    minHeight: 14
  });
  
  $(".comments_count").click(function(){
    $(this).toggleClass("active");
    $(this).parents(".flight").children(".comments").slideToggle();
    return false;
  });
});