Yeah that's what we were afraid of, we used the tables to make it easier to organize things from left to right.
We do have a javascript code that we used before, but it delays everything (delays on hover, and mouseout):
Code:
{literal}
<script>
$(document).ready(function()
{
$('li').hover(function(){
var timer = $(this).data('timer');
if(timer) clearTimeout(timer);
$(this).addClass('over');
},function(){
var li = $(this);
li.data('timer', setTimeout(function(){
li.removeClass('over');
}, 110)); //this is delay in ms
});
});
</script>
{/literal}