$(document).ready(function() {
	var speed= 500;
	$('#menu ul').find('.active').parent().children().show();
  	$('#menu ul .section-title').css({cursor:"pointer"}).click(function(){
		$(this).nextAll().children().parent().toggle(speed);
	});
});
