/*--------------------------------------------------------------------------*
 *  
 *  heightLine JavaScript Library
 *  
 * 2011 Steffen Rosskamp
 *  
 *--------------------------------------------------------------------------*/
$(function(){
  $('.heightLineParent').each(function(){
    tallest = 0;
    $('.heightLine-ul_lineup', this).each(function(){
      if ($(this).height() > tallest) {
        tallest = $(this).height();
      }
    });
    $('.heightLine-ul_lineup', this).height(tallest);
    $(this).height($(this).height()+8);
  });
});

