(function($){
 $(function(){   
   $(window).bind("load", function() { 
     $(".sub-nav-right").each(function() {$(this).css({"height": $(this).parents(".sub-nav").height()-10})}); 

     $(".nav > li")
     .bind("mouseenter", function() {
         $(this).addClass("nav-hover");  
         })  
     .bind("mouseleave", function() {
       $(".nav-hover").removeClass("nav-hover");  
       })
     }); 
 })
})(jQuery);
