
USETEXTLINKS = 1  
STARTALLOPEN = 0
HIGHLIGHT = 1
PERSERVESTATE = 0


// If you don't have server-side coding, make your nodes.js file similar to the others
// in the ZIP, not this one.
// Without a database, the auxiliary functions defined and used here are the only way 
// I am able to test the "PERSERVESTATE through .xID keys" functionality. 
// Your server side code will do something similar, but without the need to these functions.
// It will simply output nodes with two lines of statements, one for insDoc or insFld call,
// the other with the assignment of xID to an actual database ID
// See online instructions for limitations on the use of xID
var counterI = 0
function insFldX(parentOb, childOb)
{
  childOb.xID = 'X' + counterI;
  counterI--;
  return insFld(parentOb, childOb)
}
function insDocX(parentOb, childOb)
{
  childOb.xID = 'Y' + counterI;
  counterI--;
  return insDoc(parentOb, childOb)
}
// Beginning of menu
foldersTree = gFld('Arctic Cat Atv Parts', 'javascript:parent.op();')
f = foldersTree
fSub = insFld(f,gFld('<b>2010', 'A10Atv.htm'))
fSub = insFld(f,gFld('<b>2009', 'A09Atv.htm'))
fSub = insFld(f,gFld('<b>2008', 'A08Atv.htm'))
fSub = insFld(f,gFld('<b>2007', 'A07Atv.htm'))
fSub = insFld(f,gFld('<b>2006', 'A06Atv.htm'))
fSub = insFld(f,gFld('<b>2005', 'A05Atv.htm'))
fSub = insFld(f,gFld('<b>2004', 'A04Atv.htm'))
fSub = insFld(f,gFld('<b>2003', 'A03Atv.htm'))
fSub = insFld(f,gFld('<b>2002', 'A02Atv.htm'))
fSub = insFld(f,gFld('<b>2001', 'A01Atv.htm'))
fSub = insFld(f,gFld('<b>2000', 'A00Atv.htm'))
fSub = insFld(f,gFld('<b>1999', 'A99Atv.htm'))
fSub = insFld(f,gFld('<b>1998', 'A98Atv.htm'))
fSub = insFld(f,gFld('<b>1997', 'A97Atv.htm'))
fSub = insFld(f,gFld('<b>1996', 'A96Atv.htm'))

foldersTree.treeID = "L12" 
