Tablesorter JS Error

Tablesorter JS Error


I'm having problems with the tablesorter plugin. The error I'm getting
is this:
name.toLowerCase is not a function
The funny thig is that when I remove the "headers:" from the conf
everything works. But I need to disable the sorting on some fields, so
that would be usefull.
My configuration looks like this:
$("table").tablesorter({
     headers: {
          0: { sorter: true }
         ,1: { sorter: true }
         ,2: { sorter: true }
         ,3: { sorter: false }
         ,4: { sorter: false }
     }
    ,sortList:         [[0,1]]
    ,widgets:         ['zebra']
    ,widthFixed:     true
});
And the table like this:
        <table class="wide">
            <thead>
                <tr>
                    <th>#</th>
                    <th>Ime</th>
                    <th>Photos</th>
                    <th></th>
                    <th></th>
                </tr>
            </thead>
            <tfoot>
                <tr>
                    <th>#</th>
                    <th>Ime</th>
                    <th>Photos</th>
                    <th></th>
                    <th></th>
                </tr>
            </tfoot>
            <tbody>
                <tr rel="32">
                    <td width="30" class="rgt">32</td>
                    <td>14332</td>
                    <td width="15%"><img src="/site5/mn/backstage/media/items/
32_photo_2.jpg" height="14" /> </td>
                    <td width="75"><a href="item.php?id=32" class="edit">Promijeni</
a></td>
                    <td width="60"><a href="item.php?id=32&amp;action=delete"
class="delete">Obrisi</a></td>
                </tr>
                <tr rel="31">
                    <td width="30" class="rgt">31</td>
                    <td>fsdfdsafsdf ds</td>
                    <td width="15%"><img src="/site5/mn/backstage/media/items/
31_photo_1.jpg" height="14" /> </td>
                    <td width="75"><a href="item.php?id=31" class="edit">Promijeni</
a></td>
                    <td width="60"><a href="item.php?id=31&amp;action=delete"
class="delete">Obrisi</a></td>
                </tr>
                ...
                ...