var Manpower = { ApplicationRoot: "/", ControllerPath: "", PopulateControllerPath : function() { var _controllerMatch = new RegExp(Manpower.ApplicationRoot.replace(/\//g,"\\/") + "(\\w*)\\/","i").exec(location.pathname); if ( _controllerMatch != null ) { Manpower.ControllerPath = _controllerMatch[0]; } } }; Manpower.PopulateControllerPath();