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