$j(document).ready(function() {
  
  $j("#horizontal_menu .menu-item").hover(
    function(){
      $j(this).find(".sub").show();
    },
    function(){
      $j(this).find(".sub").hide();
    }
  );
    
});