function ucfirst(str) { 
	str += '';
    var f = str.charAt(0).toUpperCase();
    return f + str.substr(1);
}
