[jQuery] Help about how to use the jquery.kiketable.colsizable

[jQuery] Help about how to use the jquery.kiketable.colsizable


Hello,
I'm trying to create a very simple exemple with the the
jquery.kiketable.colsizable pluging. But, It's not working, can you
help me with this. The part of the code is bellow :
IN THE HEADER
<script type="text/javascript" src="jquery-1.3.2.js"></script>
<script type="text/javascript"
src="jquery.kiketable.colsizable-1.1.js"></script>
<script type="text/javascript" src="jquery.event.drag-1.4.min.js"></
script>
<link type="text/css" rel="stylesheet"
href="jquery.kiketable.colsizable.css">
<script type="text/javascript">
$(document).ready(function(){
$("table").kiketable_colsizable()
});
</script>
IN THE BODY
<table class="api">
<tbody>
<tr class="first">
<td width="100"><strong>PROPERTY</strong></td>
<td width="200"><strong>DEFAULT VALUE</strong></td>
<td><strong>DESCRIPTION (Other values)</strong></td>
</tr>
<tr>
<td>dragCells</td>
<td>&quot;tr:first&gt;*&quot;</td>
<td>Selection of cells to be applied column resizable
handler<br/>&quot;tr:first&gt;*&quot; : select all cells (td,th) from
first row of table<br/>&quot;tr:first&gt;*:not(:first)&quot; : select
all cells, but the first, from table's first row</td>
</tr>
<tr>
<td>dragMove</td>
<td>true</td>
<td>

true : Column visually changes width while
dragging;<br /> false : Column changes its width at stop dragging


</td>
</tr>
</tbody>
</table>
Thanks