UPDATE: This applies for jQuery.ui 1.5.2. If you are using 1.6rc2 try Ben Koehler solution.
It seems that the sortables plugin clones the node being moved. If we clone the nodes using $('#itemlist li').clone().appendTo("#itemlist"); we'll see a similar behavior, because now there are 4 radio buttons with the same name, instead of two.
You can override the way the sortables plugin works with the helper option. Try this:
$('#itemlist').sortable({helper: function(){
return $("<li>").css({border: "1px solid red", background: "transparent"}).appendTo("#itemlist")[0];
}});
We are creating a new node without radio buttons and appending it to the list. This new node will be the one that is animated.
This code works fine in FF3 and Chrome, but IE7 keeps reseting the radio buttons to its default state.
