

// Tree format definition
var TREE_FORMAT = [
	//  0. left position
	0,
	//  1. top position
	0,
	//  2. show buttons ("+" and "-" images)
	true,
	//  3. button images: collapsed state, expanded state, blank image
	["/images/tree/c.gif", "/images/tree/e.gif", "/images/tree/b.gif"],
	//  4. size of buttons: width, height, indent amount for childless nodes
	[16,16,16],
	//  5. show icons ("folder" and "document")
	false,
	//  6. icon images: closed folder, opened folder, document
	["/images/tree/fc.gif", "/images/tree/fe.gif", "/images/tree/d.gif"],
	//  7. size of icons: width, height
	[0, 0],
	//  8. indent amount for each level of the tree
	[0, 16, 32, 48, 64, 80, 96, 112, 128],
	//  9. background color for the tree
	"",
	// 10. default CSS class for nodes
	"treeNode",
	// 11. individual CSS classes for levels of the tree
	['MenuCatagory', 'MenuProduct', 'MenuBrand', 'MenuBrandOption'],
	// 12. "single branch" mode
	true,
	// 13. padding and spacing values for all nodes
	[1, 1],
    /************** PRO EXTENSIONS ********************/
    //14. draw explorer like tree ( identation will be ignored )
 	false,
    //15. Set of explorer images (folder, openfolder, page, minus, minusbottom, plus, plusbottom, line, join, joinbottom)
   	[],
    //16. Explorer images width/height
   	[19,16],
    //17. if true state will be saved in cookies
   	true,
    //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
	[200,500],
    //20. resize background //works only under IE4+, NS6+ for relatiive positioning
	true,
    //21. support bgcolor changing for selected node
	false,
    //22. background color for non-selected and selected node
	["",""]
];


