[jQuery] Odd include ordering bug w/ Tablesorter and WrapInner

[jQuery] Odd include ordering bug w/ Tablesorter and WrapInner

Haven't had the time to debug this but if you include the
jquery-plugin-wrapinner.js before the jquery.tablesorter.js (see below)
then the wrapinner will not work. However, reverse the two and both work
successfully.
Latest sources, same results in ie6/ff2

<html>
<head>
    <script src="jquery.js" type="text/javascript"></script>
    <script src="jquery-plugin-wrapinner.js" type="text/javascript"></script>
    <script src="jquery.tablesorter.js" type="text/javascript"></script>
    <script>
    $(document).ready(function() {
        $(".message").wrapInner("Hello World.");
        $("#sortable").tableSorter({
            sortColumn: null,
            sortClassAsc: 'headerSortUp',
            sortClassDesc: 'headerSortDown',
            headerClass: 'header',
            stripingRowClass: ['even','odd'],
            stripRowsOnStartUp: true
        });    
    });
    </script>
</head>
<body>
<p class="message">
<table id="sortable">
    <thead>
        <tr>
            <th>Last Name</th>
            <th>First Name</th>
            <th>Title</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>John</td>
            <td>Doe</td>
            <td>Big guy</td>
        </tr>
        <tr>
            <td>Jane</td>
            <td>Smith</td>
            <td>Boss</td>
        </tr>
    </tbody>    
</table>
</body>
</html>

____________________________________________________________________________________
Need Mail bonding?
Go to the Yahoo! Mail Q&A for great tips from Yahoo! Answers users.
http://answers.yahoo.com/dir/?link=list&sid=396546091
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/