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