// sectioned_page_toc.js

function getTOCSectionTitle(candidateElement) {
	// get section title
	sectionDiv = candidateElement.nextSibling;
	//sectionDiv = candidateElement.nextSibling.nextSibling;
	sectionDiv = skipTextNodesForwards(sectionDiv);
	
	sectionTitleStr = sectionDiv.firstChild.nextSibling.nodeValue;
	
	return sectionTitleStr;
}
