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