$(function() { 
	$(".clickable").click(function() {
		$(this).parent().children("li").toggle("slow");
	});
}); 
