//Each array corresponds to a menu option & suboptions on the left side of the screen.  Array
// element 0 is the top option, subsequent array elements = suboptions.

var homeArray = new Array()
	homeArray[0] = "Links"
	homeArray[1] = "Return To Index#../index.htm"
	homeArray[2] = "Feedback/Help#javascript:sendmail()"

var introArray = new Array()

	introArray[0] = "1 Introduction"
	introArray[1] = "1.1 Formula Tables#intropage.htm"
	introArray[2] = "1.2 Types and Usage#fttypes.htm"
	introArray[3] = "1.3 Where/How Called#ftwhereused.htm"

var editorArray = new Array()
	editorArray[0] = "2 The AXIS Script Editor"
	editorArray[1] = "2.1 Editing Window#ftedit.htm"
	editorArray[2] = "2.2 Customizing the Editor#fteditcustom.htm"

var scriptArray = new Array()
	scriptArray[0] = "3 AXIS Script"
	scriptArray[1] = "3.1 Introduction to AXIS Script#scriptintro.htm"
	scriptArray[2] = "3.2 Program Structure#scriptstructure.htm"
	scriptArray[3] = "3.3 Data Types & Variables#scriptvar.htm";
	scriptArray[4] = "3.4 Sub-Routines & Functions#scriptfunc.htm";
	scriptArray[5] = "3.5 Special Functions#scriptspecfunc.htm";
	scriptArray[6] = "3.6 Best Practices#scriptpractice.htm";

var debugArray = new Array()
	debugArray[0] = "4 AXIS Script Debugger"
	debugArray[1] = "4.1 Debugger and Breakpoints#scriptdebug.htm"
	debugArray[2] = "4.2 Shortcuts#scriptdebugshort.htm"
	debugArray[3] = "4.3 Watch Window#scriptdebugwatch.htm"
	
var ftaccArray = new Array()
	ftaccArray[0] = "5 Formula Table Accelerator"
	ftaccArray[1] = "5.1 Introduction#ftaccelerator.htm"
	ftaccArray[2] = "5.2 Enabling the Accelerator#ftaccenable.htm"
	ftaccArray[3] = "5.3 Using the Accelerator#ftaccusing.htm"

var exampleArray = new Array()
	exampleArray[0] = "6 Examples"
	exampleArray[1] = "6.1 Introduction#example1.htm"
	exampleArray[2] = "6.2 Mortality Rebasing#mortalityrebasing.htm"
	exampleArray[3] = "6.3 System Batch Formula#example2.htm"
	exampleArray[4] = "6.4 Risk Classes#example3.htm"



//indexArray entries correspond to menu choices on the main page....

var indexArray1 = new Array()
	indexArray1[0] = homeArray;
	indexArray1[1] = introArray;
	indexArray1[2] = editorArray;
	indexArray1[3] = scriptArray;
	indexArray1[4] = debugArray;
	indexArray1[5] = ftaccArray;
	indexArray1[6] = exampleArray;
	

	

