ALL CAPS to capitalize

by fooaldrin

HTML

<a href="#" class="link">small caps</a> & 
<a href="#" class="link">ALL CAPS</a>

JavaScript

$('.link').each(function() {
	$(this).css('text-transform','capitalize').text($(this).text().toLowerCase());
});