gkuhlmann,
Thank you for posting that. It's alittle over my head, but it still allowed me to get everything working.
I updated the vbstatus/vbstatus_javascript.js file with the code that gkuhlmann provided, then changed my headerinclude template, replacing my old vbstatus information with this:
Code:
<!--BEGIN VBSTATUS-->
<vb:if condition="$show['member']">
<vb:if condition="$vbulletin->options['vbstatus_active']">
<script type="text/javascript" src="{vb:raw vboptions.bburl}/clientscript/jquery/jquery-1.6.4.min.js"></script>
<script type="text/javascript" src="{vb:raw vboptions.bburl}/vbstatus/vbstatus_javascript.js"></script>
</vb:if>
</vb:if>
<!--END VBSTATUS-->
I've removed the reference that loaded mootools, and added one that loads jquery-1.6.4.min.js, which is included in my copy of vbulletin 4.1.11. I wrapped this thing in an "if you are a member then show this" conditional, since I don't believe that guests need this 100k or so of javascript.
Let me know if I've done this wrong.