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