$(document).ready(function() {
	//dropdown menus
	$("#nav > li")
		.hover(
			function() {
				$(this).find("ul").fadeIn("fast");
			},
			function () {
				$(this).find("ul").css("display", "none");
			})
		.find("ul a:last").css("border-bottom", "1px solid #ccc")
						  .css("padding-bottom", "8px" )
		.end()
		.find("ul a:first").css("border-top", "1px solid #ccc")
						   .css("padding-top", "8px" );
						   
});

