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