// A crazy file to fix hovering over sitenav items
// and that notched corner!
$(document).ready(function() {
  $("#nav-uncover a").hover(
    function() {
      $("#nav-home a").addClass("jhover");
    },
    function() {
      $("#nav-home a").removeClass("jhover");
    }
  );
  
  $("#nav-understand a").hover(
    function() {
      $("#nav-uncover a").addClass("jhover");
    },
    function() {
      $("#nav-uncover a").removeClass("jhover");
    }
  );
  
  $("#nav-help a").hover(
    function() {
      $("#nav-understand a").addClass("jhover");
    },
    function() {
      $("#nav-understand a").removeClass("jhover");
    }
  );
});