/* This script is called by the breadcrumbs script and changes
 directory names into more meaningful display names */
function makeCaps(a) {
 switch (a) {
 
  case "water": 
    aBack="Water Services";
    break;

  case "waterbilling": 
    aBack="Water Billing";
    break;  

  case "factsfigures": 
    aBack="Facts and Figures";
    break;  
	
  case "factsheets": 
    aBack="Fact Sheets";
    break;  

  case "watersupplyarea": 
    aBack="Water Supply Area";
    break;  

  case "waterwatch": 
    aBack="Water Watch";
    break;   

  case "waterquality": 
    aBack="Water Quality";
    break;  

  case "wateroperations": 
    aBack="Water Operations";
    break;    

  case "crossconnection": 
    aBack="Cross Connection Control";
    break; 

  case "lowflow":
    aBack="Low Flow Toilets";
    break;
	
  case "sookereservoir": 
    aBack="Sooke Reservoir";
    break;  
	
  case "enhanceddisinfect": 
    aBack="Enhanced Disinfection";
    break; 
	
  case "watershedprotection": 
    aBack="Watershed Protection";
    break;  
	
  case "utility_billing": 
    aBack="Utility Billing";
    break; 
	
  case "waterquality": 
    aBack="Water Quality";
    break; 
	
  case "timberwest": 
    aBack="TimberWest land purchase";
    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;
}
