//
$(function() {
	$('#navi1 ul li').mouseover(function() {
		$(this).find('ul').stop(true, true).slideDown(400); // .stop(true, true)
	}).mouseout(function() {
		$(this).find('ul').slideUp(400); // .stop(true, true)
	});
});
