Thank you all for the replies.
I have been unsuccessful getting it to work. I am thinking it may be due to the structure of the directories and index files. They are built as such:
index.php (main directory)
/helpers directory/
index.php
mary.php
tom.php
luke.php
/faq directory/
index.php
extra.php
second.php
/contact directory/
index.php
contact.php
/functions directory/
functions.php
So each set of pages really has its own directory with index file. They do not share the same index or are even located in a single direcotory. I am not sure if that is what is causing the code to fail. I just get a global error trying to access the entire site stating there is a php code error and none of the site is displayed.
I am wondering if maybe this portion of the coding in my functions.php file needs to be adjusted.
function showLinks($page, $value, $key, $directory) {
if (($directory."/".$page) == $value) {
$active = "<span class=\"txt_white\"><strong>".$key."</strong></span></div></td>";
$active .= "<td class=\"bg_subnav\" width=\"5%\"><img src=\"../images/li_arrow.jpg\" style=\"margin-right: 15px;\"></td>";
} else {
$active = "<a href=\"..".$value.".php\" class=\"lnk_subnav\">".$key."</a></div></td><td class=\"bg_subnav\"> </td>";
}
return $active;
}
As the code stands now it works for pulling my links up for each directory. Again, I am just needing them to not be displayed for the individual index pages within those directories.
Thank you again for the responses. Any further help is greatly appreciated. I am clearly stumped.