//On the Athlete profile, change the label "AAU :" to "Team :"
jQuery(document).ready(function(){
	jQuery('.SubHead *:contains("AAU :")').html('Team :');
	jQuery('.SubHead *:contains("SAT :")').html('SAT/ACT :');
	jQuery('.SubHead *:contains("Region :")').html('School State :');
});
