$(document).ready(function() {
	$("a.display_children").click(function(){ 
		$(this).parent().children('ul').slideToggle("slow");
	});
})
