This is a great little function that I use to capitalize every word in a string.
<script type="text/javascript">
function wordToUpper(strSentence) {
return strSentence.toLowerCase().replace(/\b[a-z]/g, convertToUpper);
function convertToUpper() {
return arguments[0].toUpperCase();
}
}
</script>
