$(document).ready(function() {
  $(".nav2 li").hover(
    function () { 
      $(this).toggleClass( "over" );
    }, 
    function () { 
      $(this).toggleClass( "over" );
    }
  );
});

$(document).ready(function() {
  $(".nav_top li").hover(
    function () { 
      $(this).toggleClass( "over" );
    }, 
    function () { 
      $(this).toggleClass( "over" );
    }
  );
});