I think what you mean is to have the button / link to the current paage highlighted to show you are on that page?
If so, you could use something like this:
PHP Code:
<?php
$highlightedlink="1";
include "/*relative path to menu file*/";
?>
then the menu file:
PHP Code:
<a href="somewhere1"><div class="<?php if($_GLOBALS['highlightedlink'] == 1) {
echo "link_1";
} ?>">Link 1</div></a>
<a href="somewhere2"><div class="<?php if($_GLOBALS['highlightedlink'] == 2) {
echo "link_2";
} ?>">Link 2</div></a>
/*etc etc for all your links*/
and then you could make a css file containing all the formatting for the classes link_1, link_2, etc.
Bookmarks