//
// Copyright (c) 2006 by Conor O'Mahony.
// For enquiries, please email GubuSoft@GubuSoft.com.
// Please keep all copyright notices below.
// Original author of TreeView script is Marcelino Martins.
//
// This document includes the TreeView script.
// The TreeView script can be found at http://www.TreeView.net.
// The script is Copyright (c) 2006 by Conor O'Mahony.
//

// Decide if the names are links or just the icons
USETEXTLINKS = 1  //replace 0 with 1 for hyperlinks

// Decide if the tree is to start all open or just showing the root folders
STARTALLOPEN = 0 //replace 0 with 1 to show the whole tree

HIGHLIGHT = 1
ICONPATH = '../../img/';

foldersTree = gFld("About Us", "")
  foldersTree.treeID = "Funcs"
  folder1 = insFld(foldersTree, gFld("Overview", "../main/main.html"))
  folder2 = insFld(foldersTree, gFld("Our History", "../history/main.html"))
  folder3 = insFld(foldersTree, gFld("Core Values and Vision", "../vision/main.html"))
  folder4 = insFld(foldersTree, gFld("Branding and<br>Logo Rationale<br><img src=../../img/trans.gif width=1 height=7 border=0/>", "../logo/main.html"))
  folder5 = insFld(foldersTree, gFld("Group Structure", "../pdf/RHB Group Corporate Structure.pdf"))
  folder6 = insFld(foldersTree, gFld("Corporate Information", "../corporate_information/main.html"))
  folder7 = insFld(foldersTree, gFld("Board of Directors", "../bod/main.html"))
 	 insDoc(folder7, gLnk("S", "RHB Capital Berhad", "../bod/main.html"))
	 insDoc(folder7, gLnk("S", "RHB Bank Berhad", "../bod/bank.html"))
 	 insDoc(folder7, gLnk("S", "RHB Islamic<br>Bank Berhad<br><img src=../../img/trans.gif width=1 height=7 border=0/>", "../bod/islamic.html"))
	 insDoc(folder7, gLnk("S", "RHB Investment<br>Bank Berhad<br><img src=../../img/trans.gif width=1 height=7 border=0/>", "../bod/investment_bank.html"))
  	 insDoc(folder7, gLnk("S", "RHB Insurance Berhad", "../bod/insurance.html"))
	 insDoc(folder7, gLnk("S", "RHB Investment<br>Management Sdn Bhd<br><img src=../../img/trans.gif width=1 height=7 border=0/>", "../bod/investment.html"))
  folder8 = insFld(foldersTree, gFld("Composition of<br>Board Committee<br><img src=../../img/trans.gif width=1 height=7 border=0/>", "../composition/main.html"))
  folder9 = insFld(foldersTree, gFld("Senior Management Team", "../senior_mgt/main.html"))
 	 insDoc(folder9, gLnk("S", "RHB Group", "../senior_mgt/main.html"))	
 	 insDoc(folder9, gLnk("S", "Islamic Banking", "../senior_mgt/islamic.html"))	 
  	 insDoc(folder9, gLnk("S", "Insurance", "../senior_mgt/insurance.html"))
  	 insDoc(folder9, gLnk("S", "Investment Management<br><img src=../../img/trans.gif width=1 height=7 border=0/>", "../senior_mgt/investment.html"))
  
  folder10 = insFld(foldersTree, gFld("Achievements and Awards", "../awards/main.html"))
  folder11 = insFld(foldersTree, gFld("Corporate Governance", "../governance/main.html"))
  folder12 = insFld(foldersTree, gFld("Corporate Responsibility", "../social/main.html"))

  // If your tree instead of the regular http links has "javascript:function(arg)"
  // links, and the type of the argument is string, special care is needed regarding
  // the quotes and double quotes. Please use exactly the same kind of 
  // quotes or double quotes used in this example (they change from folder to document).
  // Use the exact same number of backslashes for escaping the (double)quote 
  // characters, and pay attention not only to the (double)quotes surrouding the 
  // strings, but also to any (double)quote characters inside of that string

  // If you are going to use a frameless layout, you will need to move the functions 
  // exampleFunction and windowWithoutToolbar to the main page and change
  // parent.functionname to window.functionname in this file

  


