2
As you can see the table column has id="headerbar", we can use that to distingiush between normal links and the links in your header bar.
In you styles.css add this:
#headerbar a {
color: #FFFFFF;
}
#headerbar a:hover {
color: #000000'
}
That will make the links in your header bar white by default, and black when you hover over them.
Herko