Ok I have look all over and cannot find out how to do this. I have found how to covert first letter of a word to capitalization, but not just the LAST letter. Such as bogieS. Is this not at all possible? Am I driving myself insane for no reason? This is what I have and it isn't near right.
function capitalizeMe(obj) {
val = obj.value;
newVal = '';
val = val.split(' ');
for(var c=0; c < val.length; c++) {
newVal += val[c].substring(0,1).toLowerCase(0,-1) +
val[c].substring(0,val[c].length) + ' ';
newVal += val[c].substring().toUpperCase(0) +
val[c].substring(0,val[c].length) + ' ';