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 
  ['http://www.sealevel.be/images/arrowright.gif', 'http://www.sealevel.be/images/arrowdown.gif', 'http://www.sealevel.be/images/b.gif'],
  //  4. size of buttons: width, height, indent amount for childless nodes 
  [9, 9, 9],
  //  5. show icons ("folder" and "document") 
  false,
  //  6. icon images: closed folder, opened folder, document 
  ['images/fc.gif', 'images/fe.gif', 'images/d.gif'],
  //  7. size of icons: width, height 
  [0, 0],
  //  8. indent amount for each level of the tree 
  [0, 8, 16, 24, 32, 40, 48, 56, 64],
  //  9. background color for the tree 
  "#396C93",
  // 10. default CSS class for nodes 
  'clsNode',
  // 11. individual CSS classes for levels of the tree 
  [null, 'clsChild', null, null, null, null, null, null, null],
  // 12. "single branch" mode 
  true,
  // 13. padding and spacing values for all nodes 
  [0, 4],
  // 14. "explorer-like" mode 
  false,
  // 15. images for "explorer-like" mode 
  ['', '', '', '', '', '', '', '', '', ''],
  // 16. size of images for "explorer-like" mode: width, height 
  [0, 0],
 // 17. store tree state into cookies 
  true,
  // 18. relative positioning mode 
  true,
  // 19. initial space for the relatively positioned tree: width, height
  [133, 350],
  // 20. resize container of the relatively positioned tree 
  false,
  // 21. change background-color and style for selected node 
  false,
  // 22. background color for unselected node, background color for selected node, class for selected node 
  ["", "", 'clsNode:hover']
 ];


