tablesorter pagination issue

tablesorter pagination issue


hello
i am running into a problem with pagination plugin with tablesorter.
I am using tablesorter along with jquery tabs, each tab contains a
separate table.
Following the instructions on tablesorter.com, tab1 table works out
fine, but tab2 table the pagination navigation appears at the top of
the page, instead of at the bottom of the table.
Here is my js part:
<script>
$(document).ready(function(){
$("#mailcenter > ul").tabs();
    $("#mailin")
        .tablesorter()
.tablesorterPager({container: $("#pager1")});
$("#mailout")
        .tablesorter()
.tablesorterPager({container: $("#pager2")});
});
</script>
where mailin is my first table's name, and mailout is my 2nd table's
name. each pagination navigation is named respectively.
is this a problem due to using jquery tabs in combination with
tablesorter pagination??