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