$(document).ready(function()
{
	$("div#nav>ul>li>ul").hide();

	$("div#nav>ul>li").hover(function() {
		$(this).find("ul").show();//slideDown(285);
	}, function () {
		$(this).find("ul").hide();//slideUp(285);
	});

	$("div#content p:has(strong) + ul").each(function(){
		$(this).css({'margin-top':'0', 'padding-top':'0'});
		$(this).prev().css({'margin-bottom':'0', 'padding-bottom':'0'});
	});
});
