$(document).ready(function () {
	$("#nav li").hover(function () {
		$("#nav ul").stop(false, true);
		$("ul", this).fadeIn("fast");
	}, function () {
		$("#nav ul").stop(false, true);
		$("ul", this).fadeOut("fast");
	});
});
