	$(function() {
		$('#ban li').hover(function() {
			$(this)
				.find('ul.subnav')
				.stop(true, true)
				.show('normal');
		}, function() {
			$(this)
				.find('ul.subnav')
				.stop(true, true)
				.slideUp('slow')
		});

	});
