Say you want to bold only the third link.
Code:
#navSupp ul li a {font-weight: normal;} 
#navSupp ul li+li+li a {font-weight: bold;} 
#navSupp ul li+li+li+li a {font-weight: normal;}
The four li rule will apply to the fourth and following items.