/* 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; margin-left: 4px; top: 1px;"; //Indicates the position of Link Table on the screen
		 
var		
	normalColor = "font-family:arial;color:#000000;font-size:11pt;font-weight:normal;text-decoration:none;", // text color of the ToC headlines 
	currentColor = "font-family:arial;color:#AB9D85;font-size:11pt;font-weight:normal;text-decoration:none;",	// text color of the actual line just clicked on	
	lastVisitColor = "font-family:arial;color:#AB9D85;font-size:11pt;font-weight:normal;text-decoration:none;";// text color of the line last visited						  
  backColor = '#FFFFFF'; // background color of the ToC 		
	currentBackColor = '#FFFFFF', // background color of the current link
  lastBackColor = '#FFFFFF', // background color of the last visited link
	imageLocation = 'css/images/tocImages/';
  imagePlus = 'plus.gif';
  imageMinus = 'minus.gif';
  imageLeaf = 'leaf.gif';
  currentMouseAction = '';
  normalMouseAction = '<span onMouseOver=\"changeColorText(this)\" onMouseOut=\"rechangeColorText(this)\">';
  lastLinkMouseAction = '';

  currentBackAction = '';
  normalBackAction = "onMouseOver=\"changeColor(this)\" onMouseOut=\"rechangeColor(this)\"";
  lastLinkBackAction = '';

  tablecell = "padding: 1px 3px 0px 3px;"