$(document).ready(function(){

	$(".children").addClass("hide");

  	$(".super").click(function () {
    	$(this).next("ul").toggle("slow");
  	});  
  
});