var TREE_FORMAT = [
// 0. x coordinate
	0,
// 1. y coordinate
	0,
// 2. button images flag: true - show buttons, false - don't APL
	false,
// 3. button images: collapsed, expanded, blank
	[ "", "", "images/b.gif" ],
// 4. button images size: width, height, and indentation for childless nodes
	[ 0, 0, 0 ],
// 5. folder images flag: true - show buttons, false - don't APL
	true,
// 6. folder images: closed, opened, document
//	[ "img/fc.gif", "img/fe.gif", "img/d.gif" ],
	[ "", "", "" ],
// 7. older images size: width, height
	[ 0, 0 ],
// 8. indentation for each level
	[ 0, 10, 20, 30, 64, 80 ],
// 9. background color for the whole tree ("" - transparent)
	"",
// 10. default CSS class for nodes
	"clsNode",
// 11. CSS classes for each level
	[
        "NavLevel1",
        "NavLevel2",
        "NavLevel3",
        "NavLevel4"
    ],
// 12. single branch mode flag: true - only one branch can be opened,
//     false - any number of branches
	true,
// 13. item padding and spacing
	[ 0, 2 ],
/************** PRO EXTENSIONS ********************/
// 14. explorer-like mode flag: true - enabled (options #2-#8 will be ignored),
//     false - disabled
	false,
// 15. images for explorer-like mode: folder, opened folder, page, button in opened state, same without bottom line, button in closed state, same without bottom line, vertical line, three-way join, two-way join
	[ "img/folder.gif", "img/folderopen.gif", "img/page.gif", "img/minus.gif", "img/minusbottom.gif", "img/plus.gif", "img/plusbottom.gif", "img/line.gif", "img/join.gif", "img/joinbottom.gif" ],
// 16. images' size for explorer-like mode
	[ 19, 16 ],
// 17. state saving feature flag: true - tree state will be stored in cookies,
//     false - will not
	false,
// 18. relative positioning flag: true - tree will be placed in the place of
//     its "init()" call, false - absolute coordinates (options #0 and #1) will be used 
	true,
// 19. initial width and height for relative positioning mode
	[ 200, 400 ],
// 20. resizable background for relative positioning mode
	true,
// 21. selected node highlighting mode flag: true - selected node will be
//     highlighted (as option #22 specifies), false - will not
	true,
// 22. attributes for selected node: background color for unselected nodes,
//     same for selected node, CSS class for selected node
	[ "#FFFFFF", "#FFFFFF", "clsSelected" ],
//23. text wrapping margin
    180,
//24. vertical alignment for buttons and icons
    "top"
	
];