jQuery( function($) {
	$("ul.nav li > ul").hide();
	$("ul.nav > li").hover(
		function(e) {
			$(this).children("ul").fadeIn("fast");
			e.stopPropagation();
		},
		function(e) {
			$(this).children("ul").fadeOut("fast");
			e.stopPropagation();
		}
	);
	
});