/* These are the parameters to define the appearance of the ToC. */
var
	showNumbers = false, 		// display the ordering strings: yes=true | no=false
	backColor = "#FFFFFF",
	normalColor = "#000066",	// text color of the ToC headlines
	lastVisitColor = "#000066",	// text color of the line last visited
	currentColor = "#FF0000",	// text color of the actual line just clicked on
	titleColor = "#999933",		// text color of the title "Table of Contents""#999933"
	mLevel = 0					// number of levels minus 1 the headlines of which are presentet with large and bold fonts   
//	font-size factors for: 
//	[0] the title "Table of Contents", 
//	[1] larger and bold fonts 
//	[2] smaller fonts if MS Internet Explorer 
//	[3] larger and bold fonts 
//	[4] smaller fonts if Netscape Navigator.
//	textSizes = new Array(1, 0.7, 0.6, 0.7, 0.6)
	textSizes = new Array(1, 0.8, 0.8, 0.8, 0.7)
	fontTitle = "Arial", // font-family of the title "Table of Contents"
	fontLines = "Arial", // font-family of the headlines
	tocScroll=true,				// Automatic scrolling of the ToC frame (true) or not(false)
	tocBehaviour = new Array(2,1), // Indicates how the ToC shall change when clicking in the heading symbol (1st arg.) resp. in the heading text (2nd arg). Arg's meaning: 0 = No change, 1 = ToC changes with automatic collapsing, 2 = ToC changes with no automatic collapsing.
	tocLinks = new Array(0,0);	// Indicates wether the content's location shall be changed when clicking in the heading symbol (1st arg.) resp. in the heading text (2nd arg). Arg's meaning: 1 = No, 0 = Yes. 
	StyleDef='<style type="text/css">\n' +
'<!--\n' +
'.NavTitel {  font-family: Arial, Helvetica, sans-serif; font-size: 18px;font-weight: bold; color: #999933; text-decoration: none}\n' +
'.NavKop {  font-family: Arial, Helvetica, sans-serif; font-size: 14px;font-weight: bold; text-decoration: none}\n' +
'.NavKopKlein {  font-family: Arial, Helvetica, sans-serif; font-size:12px; font-weight: bold; text-decoration: none}\n' +
'-->\n' +
'</style>\n'
	
