Animate between two lists?

Animate between two lists?

Hi All,

I would like to be able to animate one unordered list into another. Say I had this list:

<ul>
<li>1</li><li>2</li><li>3</li><li>4</li><li>5</li>
</ul>

and I wanted to replace it with this list:

<ul>
<li>2</li><li>4</li><li>1</li><li>5</li><li>3</li>
</ul>

Is it possible to animate from one list to another (the 1 moving to the 3rd position, the 2 to the 1st position etc) using jQuery?

Thanks,

Whirlwindx