jQuery.noConflict();
jQuery(document).ready(function($) {
	//hide the all of the element with class page_pile_overview_component_sub_page_list
	$(".page_pile_overview_component_sub_page_list").hide();
	$(".root_page a").attr('href','#this');
	$(".root_page a").attr('name','this');
	//toggle the componenet with class page_pile_overview_component_sub_page_list
	$(".root_page").click(function(){
		$(this).next(".page_pile_overview_component_sub_page_list").slideToggle(300);
	});
});

