<!--

function sectionObj(arg_name, arg_type, arg_text, arg_href, arg_target, arg_parentChapterObj)
{
	this.name = arg_name;
	this.type = arg_type;
	this.text = arg_text;
	this.href = arg_href;
	this.target = arg_target;
	this.chapterObj = null;
	this.index = arg_parentChapterObj.sectionObj.length + 1;
	this.parentChapterObj = arg_parentChapterObj;

	if(isie)
		arg_parentChapterObj.sectionObj[arg_parentChapterObj.sectionObj.length] = this;
	if(isns)
		arg_parentChapterObj.sectionObj.push(this);
}

function chapterObj(arg_name, displayType, arg_parentSectionObj)
{
	this.name = arg_name;
	this.sectionObj = new Array();
	this.displayType = displayType;
	this.parentSectionObj = arg_parentSectionObj;
	arg_parentSectionObj.chapterObj = this;

	if(displayType == "layermenu")
	{
		if(isie)
			layerMenuArray[layerMenuArray.length] = this;
		if(isns)
			layerMenuArray.push(this);
	}
}

function rootObj()
{
	this.chapterObj = null;
}

//-->
