$(document).ready(function(){
	$(".menu-footer .slidef").hide().parent().click(
	function()
		{
		$(this).children("ul").slideDown("slow");
		}
	).hover
		(
			function() {}, function()
			{
				$(this).children("ul").slideUp("slow");
			}
		)
	.end();
});
