So the only thing your having a problem with is the current page being selected?
Code:
<style type="text/css">
<!--
A:link { color: #70241E }
A:visited { color: #70241E}
A:hover { color: #FFFFFF }
.active {font-weight:bold;}
-->
</style>
Code:
<a href="test.html">TEST</a>
<a href="test.html">TEST</a>
<a class="active" href="test.html">TEST</a>
<a href="test.html">TEST</a>
<a href="test.html">TEST</a>
<a href="test.html">TEST</a>
Then move the active to the current page in the menu bar. Unless the menu bar isn't static. In that case you would need to could make a php function that reads the address bar then outputs the class active into the appropriate link or maybe a javascript one but I'm not sure how to on the javascript.
Bookmarks