    $(document).ready(function() {
    $(' div.voo_open:lt(18)> table').hide();
        
        $(' div.voo_open:lt(18)> h3').click(function()
        { 
            $(this).next().slideToggle(500);
        });
    });
