I have a table that displays product information.

Now when the user hovers over the "More" option against each row, it should show additional options - 5 of them to be precise.
I have a function that builds the "More" option dynamically
$(document).ready(function() {
$(".nav li").each(function () {
more_html= "<ul><li><a href='#'>Option 1</a></li><li><a href='#'>Option 2</a></li><li><a href='#'>Option 3</a></li><li><a href='#'>Option 3</a></li><li><a href='#'>Option 4 </a></li><li><a href='#'>Option 5</a></li></ul> "
$(this).append(more_html)
});
});
and another event that attaches the drop down functionality to the the "More". I am using JQuery drop down plug in.
jQuery('.nav li').live('hover', function() {
$('.nav li').hover(function () {
clearTimeout($.data(this, 'timer'));
$('ul', this).stop(true, true).slideDown(200);
},
function () {
$.data(this, 'timer', setTimeout($.proxy(function() {
$('ul', this).stop(true, true).slideUp(200);
}, this), 200));
});
});
Now over to the problem.
When I hover over the More link on the first row, the menu drops down. But when i move mouse down through the menu, I hit on the "More" link on the second row, and that cause I losing the more drop down for the first row. Now it shows the More option drop down for the second row.
I believe I need a way to disable the hover option on the More menu on second or later rows when a menu is already in place. But i am unable to do so!
Does giving a higher z-index for the drop down help? I been struggling with this for a while now. please help!