//This version of jQuery Lettering adds a span of 'caps' to the first letter of words in Top Nav Inline Block links
$(document).ready(function($) {
	$('#topNavInnertube li a').each(function() {
		var $this = $(this);
		var text = $this.html();
			$this.html(text.replace(/\b([A-Za-z0-9])/g,'<span class="caps">$1</span>'));
	});
});
