/* This script is called by the breadcrumbs script and changes
 directory names into more meaningful display names */
function makeCaps(a) {
 switch (a) {

  case "waste":
    aBack="Garbage &amp; Recycling";
    break;

  case "bluebox":
    aBack="Blue Box";
    break;

  case "hhw":
    aBack="Household Hazardous Waste";
    break;

  case "organicspilot":
    aBack="Organics Pilot";
    break;

  case "recycle":
    aBack="Recycling";
    break;

  case "sw":
	aBack="Solid Waste";
	break;

  default:
    g=a.split(' ');
    for (l=0;l<g.length;l++)
      g[l]=g[l].toUpperCase().slice(0,1)+g[l].slice(1);
    aBack=g.join(" ");
    break;
 }
 return aBack;
}

