I believe this is what you need:
set color on document load for current category:
$('#link-' + hashStr).css({
'color': 'red'
});
change color on category click:
$('.nav1').css({'color': 'black'});
$('#link-' + hashStr).css({'color': 'red'});
note that i updated one of the nav links so they all have the same class:
<li><a class="nav1" data-tab="#hockey" id="link-hockey"href="#hockey">Hockey</a></li>
updated fiddle
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…