// JavaScript Document

$(document).ready(function() { 
  $(".menu_wrap li").mouseenter(function(){
 $(this).find("ul").slideToggle(400).show();
  });
  $(".menu_wrap li").mouseleave(function(){
 $(this).find("ul").hide();
  });
});
