<script type="text/javascript" src="/jquery-1.10.2.min.js"></script>
<script type="text/javascript"><br>$(function(){<br>$("#nav>ul>li").mouseover(function(){<br> $("#nav>ul>li").each(function(i){<br> $(this).removeClass("h_nav_over");<br> });<br> $(this).addClass("h_nav_over");<br> }).mouseout(function(){<br> $(this).addClass("h_nav_over");<br> });<br>});<br></script>










