This highlighting effect is due to the action called hover (onMouseHover).
When you will hover on any tab its color will be changed.
Just say for example,
<div class="menu">
<ul class="effect">
<li>Questions</li>
<li>JOBS</li>
<li>Users</li>
</ul>
</div>
.effect:hover {
color: none;
}
You can use any color if you want to get it highlighted. Else you can use none
.