I'm looking for a drop-right menu, not dropdown. Based on list of lists, ex html
<ul>
<li> item1
<li> fold1 <ul><li> fold1it1 <li> fold1it2 </ul>
<li> item2
<li> fold2 <ul><li> fold2it1 <li> fold2it2 </ul>
</ul>
When you mousover fold1, it would expand to the right right (drop right)
item1
fold1 fold1it1 fold1it2 fold2it3
item2
fold2
I'm looking for really simple to understand css example, or some kind of jquery plugin Thanks