// Location.js
// provides location path mapping of current location within website
//
var path = "";
var href = document.location.href;
var s = href.split("/"); 
for (var i=2;i<(s.length-1);i++) {
  sublocation = s[i]; 
  sublocation = sublocation.toLowerCase();
  switch (sublocation) {
	case "www.afmtestlab.ars.usda.gov":  
		sublocation = "Home"; break;
	case "www.afm.ars.usda.gov":  
		sublocation = "Home"; break;
	case "afm.ars.usda.gov":  
		sublocation = "Home"; break;
	case "e:":  
		sublocation = "Home"; break;

	case "benefits":  
		sublocation = "Benefits"; break;
	case "business":  
		sublocation = "Doing Business with REE"; break;

	case "care":  
		sublocation = "CARE"; break;
	case "coopres":  
		sublocation = "Cooperative Resolution"; break;
	case "customer":  
		sublocation = "Customer Service"; break;
	case "classification":  
		sublocation = "Classification "; break;

	case "divisions":  
		sublocation = "  "; break;

	case "ead":  
		sublocation = "Extramural Agreements "; break;
	case "eap":  
		sublocation = "REE Work / Life Programs "; break;
	case "empdev":  
		sublocation = "Employee Development "; break;
	case "er":  
		sublocation = "Employee Relations "; break;
	case "ethics":  
		sublocation = "Ethics "; break;


	case "faq":  
		sublocation = "FAQs "; break;
	case "fd":  
		sublocation = "Facilities "; break;
	case "fcb":  
		sublocation = "Facilities Contracts "; break;
	case "feb":  
		sublocation = "Facilities Engineering "; break;
	case "flexspend":  
		sublocation = "Flexible Spending Account Program "; break;
	case "fmd":  
		sublocation = "Financial Management "; break;

	case "itd":  
		sublocation = "Information Technology "; break;

	case "jobs":  
		sublocation = "Employment "; break;

	case "hrd":  
		sublocation = "Human Resources "; break;
	case "hrdhomepage":  
		sublocation = "  "; break;

	case "operations":  
		sublocation = "Key Contacts "; break;
	case "owcp":  
		sublocation = "Worker's Comp "; break;

	case "payleave":  
		sublocation = "Pay & Leave"; break;
	case "programs":  
		sublocation = "Programs at AFM"; break;
	case "ppd":  
		sublocation = "Acquisition & Property  "; break;
	case "ppweb":  
		sublocation = "Policies & Procedures"; break;

	case "qa":  
		sublocation = "Quality Assurance "; break;

	case "recmgmt":  
		sublocation = "Records Managment "; break;
	case "rpes":  
		sublocation = "Research Position Eval System "; break;
	case "rpmb":  
		sublocation = "Real Property Mgmt "; break;

	case "shemb":  
		sublocation = "Safety, Health, and Environment Mgmt "; break;
	case "space":  
		sublocation = "Space Management "; break;
	case "smartcenter":
		sublocation = "SMART Center"; break;

	case "tips":  
		sublocation = "Tips"; break;

	case "worklife":  
		sublocation = "REE Work / Life Programs"; break;

	default: sublocation = s[i];
   	}
path+="<A HREF=\""+href.substring(0,href.indexOf(s[i])+s[i].length)+"/\">"+sublocation+"</A>";
if (i != s.length-2) {path +=" &raquo; "; }
   }
var url = '<span class="breadcrumb">You are here... ' + path + '</span>';
document.writeln(url);


