jQuery.noConflict();

jQuery(document).ready(function() {
 	
	jQuery('#subnav ul li').find('a').each(function() {
		if (jQuery(this).text() == 'ProTS in Depth') {
			jQuery(this).html('<span class="proTS">ProTS</span> in Depth');
		}
	});

});

