/* This script is called by the breadcrumbs script and changes
 directory names into more meaningful display names */
function makeCaps(a) {
 switch (a) {
	case "elkbeaver": 
    	aBack="Elk/Beaver Lake Park";
    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;
}
