Thanks for your help. I looked at the site. It gave me some inspiration and after some other searching I figured this out.
On the navigation page I put all of the links within a <div id=light>.
THen I created a .css page with the following:
Code:
<style>{ }
a:link { color: #24293C }
a:visited { color: #24293C }
a:active { color: #FF9900 }
a:hover { color: #FF9900 }
#light a:link {color:#B3C0CE}
#light a:visited {color:#B3C0CE}
#light a:active { color: #FF9900 }
#light a:hover { color: #FF9900 }
-->
</style>
Thanks.