/*jQuery(document).ready(function() {
  
  var adjustheight = 200;
  
  $('.csi-text').each(function() {   
    if($(this).height() > 200) {   
      $(this).css('height', adjustheight).css('overflow', 'hidden');  
      $(this).parent().append('<a href="#" class="moreinfo">Více informací</a>');
    }
  });

  $("a.moreinfo").toggle(function() {
    $('.csi-text').css('height', 'auto').css('overflow', 'visible');
    $(this).text("Méně informací");
  }, function() {
    $('.csi-text').css('height', adjustheight).css('overflow', 'hidden');
    $(this).text("Více informací");
  });

});*/
