We can safely say that the top menu needs no jQuery at all - so do not assign any to it.
What we want to do is make the side menu scroll when we get to that page. So perform the scroll when the page loads (pseudo-code follows, to be placed on each page);
- <script type="text/javascript">
- $(document).ready(function() {
- $('#right_nav').scrollTo(target);
- });
You may be able to ditch the plug-in and just use jQuery's scroll functions to achieve this affect.