/*
Konfiguration des js-Menues
separat für Index
*/
function dTree(objName) {
	this.config = {
		target					: null,
		folderLinks			: false,
		useSelection		: true,
		useCookies			: true,
		useLines				: true,
		useIcons				: true,
		useStatusText		: false,
		closeSameLevel	: true,
		inOrder					: true
	}
	this.icon = {
		root				: 'images/transparent.gif',
		folder			: 'images/transparent.gif',
		folderOpen	: 'images/transparent.gif',
		node				: 'images/transparent.gif',
		empty				: 'images/transparent.gif',
		line				: 'images/transparent.gif',
		join				: 'images/transparent.gif',
		joinBottom	: 'images/transparent.gif',
		plus				: 'images/transparent.gif',
		plusBottom	: 'images/transparent.gif',
		minus				: 'images/transparent.gif',
		minusBottom	: 'images/transparent.gif',
		nlPlus			: 'images/transparent.gif',
		nlMinus			: 'images/transparent.gif'
	};
	this.obj = objName;
	this.aNodes = [];
	this.aIndent = [];
	this.root = new Node(-1);
	this.selectedNode = null;
	this.selectedFound = false;
	this.completed = false;
};