/* These are the parameters to define the appearance of the ToC. */
var
	showNumbers = false, 		// display the ordering strings: yes=true | no=false
	backColor = "#333333",		// background color of the ToC 
	bckgif = "msfinal_3_low_jpg_64_logo_1.jpg"	// background image (added by FB)
	normalColor = "#000033",	// text color of the ToC headlines (dark blue MJ)
	lastVisitColor = "#FFFF99",	// text color of the line last visited (yellow MJ)
	currentColor = "#990066",	// text color of the actual line just clicked on (purple MJ)
	rollOverColor = "#3333FF",	// text color for rollover effect (burnt orange, now bright blue MJ)
	titleColor = "#CC6600",		// text color of the title "Table of Contents" (burnt orange MJ)
	mLevel = 1,			// 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(0.4, 0.7, 0.6, 0.7, 0.6),


	//"Helvetica,Arial"
	// font-family of the title "Table of Contents"
	fontTitle = "verdana,helvetica,arial,sans-serif",


	//"Helvetica,Arial"
	// font-family of the headlines
	fontLines = "verdana,helvetica,arial,sans-serif",


	// Automatic scrolling of the ToC frame (true) or not(false)
	tocScroll=true,


	// 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.
	tocBehaviour = new Array(1,1),


	// 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. 
	tocLinks = new Array(1,0);
	