function expCom() {
  $.each($('.komentarz textarea'),function() {
    if(this.offsetHeight!=this.scrollHeight) {
      if(this.scrollHeight<150)
        $(this).height(this.scrollHeight);
      else $(this).height(150);
    }
  });
}

$(function() {
expCom();
});
