// Tree format definition
var TREE_FORMAT = [
	//  0. left position
	0,
	//  1. top position
	130,
	//  2. show buttons ("+" and "-" images)
	true,
	//  3. button images: collapsed state, expanded state, blank image
 	["/menu/collapsed_button.gif", "/menu/expanded_button.gif", "/menu/blank.gif"],
// ["/menu/collapsed_button.gif", "/menu/expanded_button.gif", "/menu/e1.jpg"],
	//  4. size of buttons: width, height, indent amount for childless nodes
	[25, 25, 25],
	//  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, 4, 20, 48, 64, 80, 96, 112, 128],
	//  9. background color for the tree
	//"#434546" ,
	//	"f3f8e4" ,
//	"#e8e9e4"  ,
//  "#f9f9f7" ,
 "f7f2c9" ,
 // "#fcfced" ,
	
	// 10. default CSS class for nodes
	 "treeNode" ,
	// 11. individual CSS classes for levels of the tree
	["treenode1"],
	// 12. "single branch" mode
	true,
	// 13. padding and spacing values for all nodes
	[0, 0]
];
