Modify the interface sortserialize output. [SOLVED]

Modify the interface sortserialize output. [SOLVED]

Hi,

I am working on a website with a few friends and am loving jQuery (its my first time using this library). I also found the interface library and it makes life so easy. Is it possible to add more information to the hash that is output buy the serialize function?

Right now the has looks like:
sort1[]=buddylist&sort2[]=one&sort2[]=image&sort3[]=two&sort3[]=three


This string is passed via AJAX to a php script which then explodes it by the &, and adds it to a database.

array( sort1[]=buddylist, sort2[]=one, etc)


I would like to modify this code to pull info from a textbox on each of the sort child nodes, and add it to the hash, something like:

sort2[]=one=title&sort2[]=two=title&etc


Is this possible? It seems that the interface script is compressed, and that it is self-inclusive - i.e. it doesnt needs the specific files such as isortables.js to work.

if not, does anyone know another way to do this? This would allow me to store edited titles in the database along with the position of each element.

Thanks in advance.