$(function() {
	
	$("ul.menu > li").each(function() {
		
		$(this).hover(
			function() {
				var $top = $(this).offset().top + $(this).height();
				var $lft = $(this).offset().left - 1;
				$(this).children("ul").css({ "top": $top + "px", "left": $lft + "px" }).show();
			},
			function() {
				$(this).children("ul").hide();
			}
		);
		
	});
	
});