// Tree format definition
var TREE_FORMAT = [
	//  0. left position
	12,
	//  1. top position
	260,
	//  2. show buttons ("+" and "-" images)
	true,
	//  3. button images: collapsed state, expanded state, blank image
	["/images/buttons/plus_sign.gif", "/images/buttons/minus_sign.gif", "/images/buttons/blank.gif"],
	//  4. size of buttons: width, height, indent amount for childless nodes
	[9, 9, 0],
	//  5. show icons ("folder" and "document")
	false,
	//  6. icon images: closed folder, opened folder, document
	["", "", ""],
	//  7. size of icons: width, height
	[0, 0],
	//  8. indent amount for each level of the tree
	[0, 12, 24, 42, 64, 80, 96, 112, 128],
	//  9. background color for the tree
	"",
	// 10. default CSS class for nodes
	"tree",
	// 11. individual CSS classes for levels of the tree
	[],
	// 12. "single branch" mode
	false,
	// 13. padding and spacing values for all nodes
	[1, 0]
];