$(function () {
	$(".mtop").hover(
		function() {
			$(".mtop .sub").hide();
			$(".sub", $(this)).show();
		},
		function() {
			$(".mtop .sub").hide();
		}
	);
	
	$("#menu ul:first").hover(function() {},
		function() {
			$(".mtop .sub").hide();
			$(".current .sub").show();
		}
	);
});
