$(document).ready(function() {
	$("ul ul").hide();
	$("ul li:has(ul)").hover(function() {
		$(this).find("a:first").addClass("dropped");
		$(this).find("ul").slideToggle("fast");
	}, function() {
		$(this).find("a:first").removeClass("dropped");
		$(this).find("ul").slideToggle("fast");
	});
});