$(document).ready(function() {
$(".menu-1 li").mouseenter(function() {
	$(this).children().next().toggle('200');
   });
$(".menu-1 li").mouseleave(function() {
	$(this).children().next().toggle('200');
   });
 });
