$(document).ready(function() {
  $('.link-underline').hover(function() { $('#' + $(this).attr('role')).addClass('highlighted-link'); },
  function() { $('#' + $(this).attr('role')).removeClass('highlighted-link'); });
});
$(document).ready(function() {
  $('#news-header').mouseover(
    function() { $('#news-box strong').addClass('highlighted-link'); }
  ).mouseout(
    function() { $('#news-box strong').removeClass('highlighted-link');}
  );
  $('#news-box').mouseover(function() {$('#news-header').trigger('mouseover')}).mouseout(function() {$('#news-header').trigger('mouseout')});
});