jQuery(document).ready(function($) {
  $('#kollegium tbody tr').mouseover(function(event) {
    if ($(this).hasClass('table-divider') == false) {
      $(this).addClass('mouseover');
    }
  }).mouseout(function(event) {
    if ($(this).hasClass('table-divider') == false) {
      $(this).removeClass('mouseover');
    }
  });
});