$(function(){

	$('ul.expanded_list > li > a').click(function(){
		$(this).parent().children('ul').toggle();
		return false;
	});

});
