// Tree format definition
var TREE_FORMAT = [
	//  0. left position
	5,
	//  1. top position
	5,
	//  2. show buttons ("+" and "-" images)
	true,
	//  3. button images: collapsed state, expanded state, blank image
	["img/collapsed_button.png", "img/expanded_button.png", "img/blank.gif"],
	//  4. size of buttons: width, height, indent amount for childless nodes
	[16, 16, 16],
	//  5. show icons ("folder" and "document")
	true,
	//  6. icon images: closed folder, opened folder, document
	["img/closed_folder.png", "img/opened_folder.png", "img/bullet_der16.png"],
	//  7. size of icons: width, height
	[16, 16],
	//  8. indent amount for each level of the tree
	[0, 8, 12, 16, 20, 24, 28, 32, 36],
	//  9. background color for the tree
	"img/closed_folder.png",
	// 10. default CSS class for nodes
	"treeNode",
	// 11. individual CSS classes for levels of the tree
	[],
	// 12. "single branch" mode
	false,
	// 13. padding and spacing values for all nodes
	[1, 0]
];