/* 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 "a-76":  
		sublocation = "A-76: Competitive Sourcing"; break;
	case "aboutafm":  
		sublocation = "About AFM"; break;
	case "acquisitions":  
		sublocation = "Acquisitions"; break;
	case "agreements":  
		sublocation = "Extramural Agreements"; break;
	case "awards":  
		sublocation = "Awards/Employee Recognition"; 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 "councils":  
		sublocation = "Councils at AFM"; break;



	case "divisions":  
		sublocation = "  "; break;


	case "eac":  
		sublocation = "Employee Advisory Council"; 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 Management Services "; break;
	case "ethics":  
		sublocation = "REE Ethics "; break;
	case "energy":  
		sublocation = "Energy Management"; break;
	case "events":  
		sublocation = "AFM Events"; break;
	case "engineering":  
		sublocation = "Engineering Design & Construction"; break;
	case "eneo":  
		sublocation = "New Employee Orientation"; break;



	case "finance":  
		sublocation = "Financial Management/FFIS"; 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 "facilities":  
		sublocation = "Facilities"; break;
	case "forms":  
		sublocation = "Forms Library"; break;



	case "itd":  
		sublocation = "Information Technology "; break;
	case "initiatives":  
		sublocation = "Government Initiatives "; break;

	case "jobs":  
		sublocation = "Employment "; break;

	case "hrd":  
		sublocation = "Human Resources "; break;
	case "hrdhomepage":  
		sublocation = "  "; break;
	case "humancapital":  
		sublocation = "Human Capital Management"; break;
	case "help":  
		sublocation = "AFM Help"; 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 "performance":  
		sublocation = "Performance Appraisal/Management"; break;
	case "perf-plans":  
		sublocation = "Performance Plans"; break;
	case "purchase-cards":  
		sublocation = "Purchase Cards"; break;
	case "property":  
		sublocation = "Personal Property"; break;




	case "qa":  
		sublocation = "Quality Assurance "; break;


	case "recmgmt":  
		sublocation = "Records Managment "; break;
	case "rpes":  
		sublocation = "Research Position Eval System "; break;
	case "realproperty":  
		sublocation = "Real Property Management "; break;

	case "shem":  
		sublocation = "Safety, Health, and Environment Mgmt "; break;
	case "space":  
		sublocation = "Space Management "; break;
	case "smartcenter":
		sublocation = "SMART Center"; break;
	case "strategic":  
		sublocation = "AFM Strategic Planning"; break;


	case "tips":  
		sublocation = "Tips"; break;
	case "travel":  
		sublocation = "Travel and Relocation"; break;


	case "vac-ann":  
		sublocation = "Standard Vacancy Announcements"; 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);
