/* This script is called by the breadcrumbs script and changes
 directory names into more meaningful display names */
function makeCaps(a) {
 switch (a) {

  case "board": 
    aBack="Meet the CRD";
    break; 

  case "about": 
    aBack="About the CRD";
    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;
}

