String.prototype.ucfirst = function() {
	return this.charAt(0).toUpperCase() + this.substr(1).toLowerCase();
};
