Ok, I''m doing something that IE 6 does not like, but whenever I drag the LI item on an OL, the numbering gets all messed up. I have this: <ol id="my_ol"></ol> Then in javascript I create LI elements and add them to the list. Then I do: Sortable.create(''my_ol''); Everything looks good, I have a list like: 1. Item 1 2. Item 2 3. Item 3 But if I drag item 2 down to take item 3''s spot, I then have: 1. Item 1 3. Item 3 1. Item 2 Anyone seen this before or know a workaround? Firefox doesn''t seem to have any problem with it, just IE 6. Greg