$(function()
{
    $('ul#menu li div.submenu').each(function( i, item )
    {
        $( item ).parent().hover(function()
        {
            $( item ).find( 'table' ).width( $( this ).width() + 3 );
            $( item ).removeClass('hidden');
        }, function()
        {
            $( item ).addClass('hidden');
        });
    });
});