

USEICONS = 0


// Configures whether the names of the nodes are links (or whether only the icons
// are links).
USETEXTLINKS = 1

// Configures whether the tree is fully open upon loading of the page, or whether
// only the root node is visible.
STARTALLOPEN = 0

// Specify if the images are in a subdirectory;
ICONPATH = 'images/'



foldersTree = gFld("", "javascript:parent.op()")
  foldersTree.treeID = "Frameset"
  
  aux1 = insDoc(foldersTree, gLnk("C", "Home", "home/index.html"))
  
  aux1 = insDoc(foldersTree, gLnk("C", "About us", "about/index.html"))
  
  aux1 = insFld(foldersTree, gFld("Projects", "javascript:parent.op()"))
    
    aux2 = insFld(aux1, gFld("Small", "javascript:parent.op()"))
	  insDoc(aux2, gLnk("C", "CO/AIR", "projects/coair/index.html"))
	  insDoc(aux2, gLnk("C", "Car Free Day", "projects/carfreeday/index.html"))
	  insDoc(aux2, gLnk("C", "A Garden Shed", "projects/shed/index.html"))
	   insDoc(aux2, gLnk("C", "Creativity in Crisis", "projects/crisis/index.html"))	
	
	aux2 = insFld(aux1, gFld("Medium", "javascript:parent.op()"))
	  insDoc(aux2, gLnk("C", "Pavilion", "projects/urania2/index.html"))	
	  insDoc(aux2, gLnk("C", "Z-66", "projects/z66/index.html"))
	  insDoc(aux2, gLnk("C", "1850", "projects/claribel/index.html"))
	  insDoc(aux2, gLnk("C", "This is Listed", "projects/islington/index.html"))
	  insDoc(aux2, gLnk("C", "An Island", "projects/birnbeck/index.html"))
	  insDoc(aux2, gLnk("C", "Grass Roof", "projects/grass/index.html"))		
	
	aux2 = insFld(aux1, gFld("Large", "javascript:parent.op()"))
	  insDoc(aux2, gLnk("C", "Design Matter", "projects/designmatter/index.html"))
	 insDoc(aux2, gLnk("C", "Eco/Oil Town", "projects/ecoil/index.html"))
	  insDoc(aux2, gLnk("C", "Landscape IS", "projects/landscapeis/index.html"))
	  
	  aux3 = insFld(aux2, gFld("A New Town", "projects/newtown/"))
           
  
  aux1 = insFld(foldersTree, gFld("Collaborations", "javascript:parent.op()"))
    insDoc(aux1, gLnk("C", "A group of people", "people/index.html"))
	insDoc(aux1, gLnk("C", "A list of places", "places/index.html"))
	insDoc(aux1, gLnk("C", "A set of links", "links/index.html"))
  
 
  aux1 = insDoc(foldersTree, gFld("Contact", "javascript:parent.op()"))
   aux2 = insFld(aux1, gFld("<em>ask@asmallstudio.co.uk<em>", "mailto:ask@asmallstudio.co.uk"))
   aux2 = insFld(aux1, gFld("3 Claribel Road<br />London, SW9 6TH", ""))
      aux2 = insFld(aux1, gFld("+44 (0)7941 618172", ""))


	



