// Tree format definition
var ccTreeFm = [

	//  0. left position
	//  1. top position
	//  2. show buttons ("+" and "-" images)
	//  3. button images: collapsed state, expanded state, blank image
	//  4. size of buttons: width, height, indent amount for childless nodes
	0,0,false,["bullet_001.gif", "bullet_002.gif", "bullet_blank.gif"],[0, 0, 0],
	
	//  5. show icons ("folder" and "document")
	//  6. icon images: closed folder, opened folder, document
	//  7. size of icons: width, height
	//  8. indent amount for each level of the tree
	//  9. background color for the tree
	// 10. default CSS class for nodes
	true,["../0i/tree_norm.gif", "../0i/tree_down.gif", "../0i/tree_doc.gif"],[15, 15],[0, 5, 10, 15],"","treeNode",
	
	
	// 11. individual CSS classes for levels of the tree
	// 12. "single branch" mode
	// 13. padding and spacing values for all nodes
	// 14. "explorer-like" mode
	// 15. images for "explorer-like" mode
	// 16. size of images for "explorer-like" mode: width, height
	[],true,[2, 0],false,["", "", "", "", "", "", "", "", "", ""],[0, 0],
	
		
	// 17. store tree state into cookies
	// 18. relative positioning mode
	// 19. initial space for the relatively positioned tree: width, height
	// 20. resize container of the relatively positioned tree
	// 21. change background-color and style for selected node
	// 22. background color for unselected node, background color for selected node, class for selected node
	// 23. text wrapping margin
	// 24. vertical alignment for buttons and icons
	true,true,[0, 0],true,false,["", "", ""],137,"middle"
];