// Tree format definition
var LEFT_NAV_FORMAT = [
	//  0. left position
	0,
	//  1. top position
	10,
	//  2. show buttons ("+" and "-" images)
	false,
	//  3. button images: collapsed state, expanded state, blank image
	["/images/acorn_sidemenu_icon.jpg", "", ""],
	//  4. size of buttons: width, height, indent amount for childless nodes
	[12, 9, 0],
	//  5. show icons ("folder" and "document")
	true,
	//  6. icon images: closed folder, opened folder, document
	["/images/acorn_sidemenu_icon.jpg", "/images/acorn_sidemenu_icon.jpg", "/images/acorn_blank.jpg"],
	//  7. size of icons: width, height
	[12, 9],
	//  8. indent amount for each level of the tree
	[0, 5, 0, 0,],
	//  9. background color for the tree
	"",
	// 10. default CSS class for nodes
	"menuTopLevel",
	// 11. individual CSS classes for levels of the tree
	["menuTopLevel", "menuSubLevel", "menuSubLevel", "menuSubLevel", "menuSubLevel", ],
	// 12. "single branch" mode
	true,
	// 13. padding and spacing values for all nodes
	[0, 1],
	// 14. "explorer-like" mode
	false,
	// 15. images for "explorer-like" mode
	["/images/acorn_sidemenu_icon.jpg", "/images/acorn_sidemenu_icon.jpg", "", "", "", "", "", "", "", ""],
	// 16. size of images for "explorer-like" mode: width, height
	[12, 9],
	// 17. store tree state into cookies
	true,
	// 18. relative positioning mode
	true,
	// 19. initial space for the relatively positioned tree: width, height
	[0,0],
	// 20. resize container of the relatively positioned tree
	true,
	// 21. change background-color and style for selected node
	true,
	// 22. background color for unselected node, background color for selected node, class for selected node
	["#F7F8F7", "E1E7E3", "", ""],
	// 23. text wrapping margin
	0,
	// 24. vertical alignment for buttons and icons
	"middle"
];