Just a quick look, looks like you forgot to put the id in the td tag:
You've got:
<if condition="$show['member']"><td><a href="$show[nojs_link]#usercptools">$vbphrase[quick_links]</a> <script type="text/javascript"> vbmenu_register("usercptools"); </script></td></if>
I think it should be:
<if condition="$show['member']"><td id="usercptools"><a href="$show[nojs_link]#usercptools">$vbphrase[quick_links]</a> <script type="text/javascript"> vbmenu_register("usercptools"); </script></td></if>
|