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("aboutus", "About Us", "/aboutus/");
BagOCrumbs[1] = new Crumb("communities", "Community Profiles", "/communities/");
BagOCrumbs[2] = new Crumb("es", "Employment Services", "/es/");
BagOCrumbs[3] = new Crumb("etss", "ETSS", "/etss/");
BagOCrumbs[4] = new Crumb("lift", "LIFT", "/lift/");
BagOCrumbs[5] = new Crumb("news", "News + Events", "/news/");
BagOCrumbs[6] = new Crumb("recoveryact", "Recovery Act", "/recoveryact/");
BagOCrumbs[7] = new Crumb("scsep", "SCSEP", "/scsep/");
BagOCrumbs[8] = new Crumb("ui", "Unemployment Insurance Information", "/ui/");
BagOCrumbs[9] = new Crumb("vr", "Vocational Rehabilitation", "/vr/");
BagOCrumbs[10] = new Crumb("wdtf", "WDTF", "/wdtf/");

// ... 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 = " &gt; ";
strUrl = document.location.href;
strList = "<a href='/index2.aspx'>Home</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 += " &gt; " + document.title;
document.write(strList);
