//This version of jQuery Lettering wraps the first letter in words of each Admin WS link text string in a span called "caps"
$(document).ready(function($) {
$('.adminTxt').each(function() {
var $this = $(this);
var text = $this.text();
$this.html(text.replace(/\b([A-Za-z0-9])/g,'<span class="caps">$1</span>'));
	});
});
