List of utility methods to do String Title Case
String.prototype.toTitleCase = function toTitleCase() { return this.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();}); };