$(function(){

	$(".link-submenu").click( function() {
		$(this).next("ul:visible").slideUp("slow");
		$(this).next("ul:hidden").slideDown("slow");
	});
			
});
