
$(document).ready(function(){
   $( '#menu_id > ul > li').hover(
    function(){
      $('.box_submenu', $(this)).show();
			$(this).addClass('hover');
    },
    function(){
      $('.box_submenu', $(this)).hide();
			$(this).removeClass('hover');
    }
  );
});






