<div id="store">
<div class="catalogContainer">
<h2>Catalog</h2>
<ul id="catalogNode" class="container"></ul>
</div>
<div class="cartContainer">
<h2>Cart</h2>
<ol id="cartNode" class="container"></ol>
</div>
<div class="wishlistContainer">
<h2>Wishlist</h2>
<ol id="wishlistNode" class="container"></ol>
</div>
<p class="instructions"><b>Instructions:</b> Drag products from the Catalog into either the Cart or Wishlist.</p>
<p class="details"><b>Notes:</b></p>
<ul>
<li>This is step 2 in the SitePen blog’s <a href="http://www.sitepen.com/blog/?p=3198">Dojo Drag’n’Drop Redux</a>.</li>
<li>The Wishlist accepts anything in the store; the Cart only accepts items marked as in stock.</li>
<li>Reassignments between lists are possible, as long as the target list will accept the item being reassigned.</li>
<li>Standard multiple selection works here. Beware; you can only drop a group if every item can be dropped into the list you’re attempting to drop them on!</li>
<li>The Wishlist and Cart are both regular ordered lists; feel free to re-order them internally via drag and drop as well.</li>
<li>Breakthrough at the lab! It’s possible to clone products!</li>
</ul>
</div>