// Tree format definition
var TREE1_FORMAT = [
	//  0. left position
	10,
	//  1. top position
	20,
	//  2. show buttons ("+" and "-" images)
	false,
	//  3. button images: collapsed state, expanded state, blank image
	["script/tree287/images/collapsed_button.gif", "script/tree287/images/expanded_button.gif", "script/tree287/images/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
	["script/tree287/images/collapsed_button.gif", "script/tree287/images/expanded_button.gif", "script/tree287/images/document.gif"],
	//  7. size of icons: width, height
	[16, 16],
	//  8. indent amount for each level of the tree
	[0, 2, 32, 48, 64, 80, 96, 112, 128],
	//  9. background color for the tree
	"",
	//10. default style for all nodes
    "clsNode",
	//11. styles for each level of tree
//(default style will be used for undefined levels)
    [
        "clsNodeLevel1",
        "clsNodeLevel2",
        "clsNodeLevel3",
        "clsNodeLevel4"
    ],
	// 12. "single branch" mode
	true,
	// 13. padding and spacing values for all nodes
	[0, 5],
// 14. explorer-like mode
false,
// 15. images for "explorer-like" mode
	["", "", "", "", "", "", "", "", "", ""],
//16. Explorer images width/height
	[19,16],
//17. if true state will be saved in cookies
	false,
//18. if true - relative position will be used. (tree will be opened in place where init() was called)
	true,
//19. width and height of initial rectangle for relative positioning
	[360,475],
//20. resize background //works only under IE4+, NS6+ for relative positioning
	true,
//21. support bgcolor changing for selected node
	false,
//22. background color for non-selected and selected node
	["white","#EEEEEE"],
		// 23. text wrapping margin
	0,
	// 24. vertical alignment for buttons and icons
	"middle"
];
