//
$(function() {
	
	// 
	$(".menu ul li a").hover(function() {
		$(this).parent().find("ul").show();
		
		$(this).parent().hover(function() {
		}, function() {
			$(this).parent().find("ul").hide();
		});
	});
	
});
