Creating multiple Droppables has an interesting bug. (it is seen on the shopping cart demo, as well as http://www.lifepowersales.com/jason/month?month=1130828400 )
( version 1.5_pre1 )
scenario: You have a list of droppables 1, 2 and 3. along with draggable items within.
Challange: If you drag an item from droppable area 2 it will go "under" (zindex = something lower than) droppable #3. It works fine dragging over droppable 1.
You can see this (again in ie6) on the shopping cart demo by trying to drag an item into the trash bin, it goes "behind" it.
if you look at my example of this, (the calander) you'll notice that every day is a droppable, but the grayed out (out of this month days) seem to allow the draggable element to go "over" those droppable zones. I achieved this by having a different class on the days within the month, and the days located outside the month. Then by adding z-index:1; on the days within the month it allows the grayed boxes (days outside this month) to work fine. I've yet to uncover a solution for the days within the month.
(look at the source to understand :) )
Thanks alot,
Jason