//underlines additional parts of the navigation on mouseover

$(document).ready(function() {
  $('#navigation li:not(.active)').mouseover(function() {
    $(this).children('h3').children('a').css('color', '#c5552f');
  });
  $('#navigation li').mouseout(function() {
    $(this).children('h3').children('a').css('color', '#333');
  });
});
