Javascript String uc_first()
first()
String.prototype.uc_first = function() { return this.charAt(0).toUpperCase() + this.slice(1); };