String.prototype.ucfirst = function() {
	return this.substring(0,1).toUpperCase() + this.substring(1);
}

