One problem I see is that this:
if ($thisPage=="events" || "events-expo" || "expo-industry" || "expo-lesson" || "expo-tips")
is the same as this:
if ($thisPage == "events")
The logical OR operation combines entire logical statements, and $thisPage == "events" is a single logical statement, thus you're just OR'ing the boolean value of a bunch of strings together with one logical comparison.
Instead, either repeat the comparison for each statement or write it more compactly using something like [man]in_array/man, e.g.:
if(in_array($value, array("option1", "option2", "option3", "etc.")))