function Crumb(Path, Name, Url) {
 	this.Path	= Path;
 	this.Name	= Name;
 	this.Url	= Url;
}

BagOCrumbs = new Array();

// add new directories here.  the format:
// Path: the name of the directory
// Name: the text you want to display onscreen
// Url:  the URL to the page for this group page or book

BagOCrumbs[0] = new Crumb("acknowledgements", "Acknowledgements", "Acknowledgements.htm");
BagOCrumbs[1] = new Crumb("ExecutiveSummary", "Executive Summary", "ExecutiveSummary.htm");
BagOCrumbs[2] = new Crumb("PurposeAndDefs", "Purpose and Definitions", "PurposeAndDefs.htm");
BagOCrumbs[3] = new Crumb("history", "History Of Crime Victims’ Rights", "History.htm");
BagOCrumbs[4] = new Crumb("WhyFocus", "Why Focus On Victimization?", "WhyFocus.htm");
BagOCrumbs[5] = new Crumb("ATCStats", "Austin/Travis County Victimization Statistics", "ATC_Statistics.htm");
BagOCrumbs[6] = new Crumb("WhatNeed", "What Do Victims Need?", "WhatNeed.htm");
BagOCrumbs[7] = new Crumb("WhatSystem", "What System Is In Place To Support Victims’ Needs?", "WhatSystem.htm");
BagOCrumbs[8] = new Crumb("Resources", "Resources Available To Serve Victims", "Resources.htm");
BagOCrumbs[9] = new Crumb("NextSteps", "What Are The Next Steps For Improving Victims Services?", "NextSteps.htm");
BagOCrumbs[10] = new Crumb("AppendixA", "Appendix A: Glossary Of Acronyms", "AppendixA.htm");
BagOCrumbs[11] = new Crumb("AppendixB", "Appendix B: Research Methodology", "AppendixB.htm");
BagOCrumbs[12] = new Crumb("AppendixC", "Appendix C: Focus Group Questions", "AppendixC.htm");
BagOCrumbs[13] = new Crumb("AppendixD", "Appendix D: Provider Inventory Survey", "AppendixD.htm");
BagOCrumbs[14] = new Crumb("AppendixE", "Appendix E: Definitions of Child Abuse in Texas Law", "PurposeAndDefs.htm");
BagOCrumbs[15] = new Crumb("AppendixF", "Appendix F: Crime Victims’ Compensation Requirements", "AppendixF.htm");
BagOCrumbs[16] = new Crumb("AppendixG", "Appendix G. References", "AppendixG.htm");
BagOCrumbs[17] = new Crumb("AppendixH", "Appendix H: APD Command Areas", "AppendixH.htm");

// ... we build the path and display it

var i, x;
// the character below displays between the directories; you can change it if you like.
strConcat = " | ";
strUrl = document.location.href;
strList = "<a href='../VictimsAssmt/TOC.htm'>Victims Services Assessment</a>";
strDebug = "";
aryDirs = strUrl.split("/");
for (x=0; x < aryDirs.length; x++) {
	 for(i = 0; i < BagOCrumbs.length; i++) {
			 if (BagOCrumbs[i].Path.toLowerCase() == aryDirs[x].toLowerCase()) {
	                      strList += strConcat + "<a href='" + BagOCrumbs[i].Url + "'>" + BagOCrumbs[i].Name + "</a>";
			 i = BagOCrumbs.length;
		}
}
}

// comment out the next line to eliminate the display of the document's title
// the character below displays between the directory and the document's title; you can change it if you like.

strList += " | " + document.title;
document.write(strList);