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