/* These are the parameters to define the appearance of the ToC. */
var		
	tocBehaviour = new Array(1,0),  // 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(1,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. 
	tableLocation = "position: relative; left: 0px; top: 0px"; //Indicates the position of Link Table on the screen
		 
var		
	normalColor = "font-family:verdana;color:#003366;font-size:10pt;font-weight:bold;text-decoration:none;font-style:none;", // text color of the ToC headlines 
	currentColor = "font-family:verdana;color:#003366;font-size:10pt;font-weight:bold;text-decoration:none;font-style:none;",	// text color of the actual line just clicked on	
	lastVisitColor = "font-family:verdana;color:#FF0000;font-size:10pt;font-weight:bold;text-decoration:none;font-style:none;";// text color of the line last visited						  
  backColor = '#97BEED'; // background color of the ToC 		
	currentBackColor = '#DFEBFA', // background color of the current link
  lastBackColor = '#DFEBFA', // background color of the last visited link
	imageLocation = 'css/images/tocImages/';
  imagePlus = 'plus_left.gif';
  imageMinus = 'minus_left.gif';
  imageLeaf = 'leaf_left3.gif';
  currentMouseAction = '';
  normalMouseAction = '<span onMouseOver=\"changeColorText(this)\" onMouseOut=\"rechangeColorText(this)\">';
  lastLinkMouseAction = '';

  currentBackAction = '';
  normalBackAction = "onMouseOver=\"changeColor(this)\" onMouseOut=\"rechangeColor(this)\"";
  lastLinkBackAction = '';

  tablecell = "border-color: #639EE7; border-style: solid; padding: 1px 3px 0px 3px; border-width : 0px 0px 1px 0px;"
