$(document).ready(function() {
	
	$('.menu > li').hover(function() {
		
	$(".sub-menu").hide();
		
		$(this).find('ul').show();
	});
	
});
