$(document).ready(function() {
    $('.menu ul ul').each(function(i) {
        var list = $(this).children();
        if ( list.length > 10 ) {
            list.slice(10).not('.active').hide();
            $(this).append('<li><a href="#" id="more_link">more...</a></li>');
            $('.menu #more_link').toggle(
                function() {
                    $('.menu #more_link').parent().siblings().show();
                    $('.menu #more_link').text('less...');
                },
                function() {
                    $('.menu #more_link').parent().siblings().slice(10).not('.active').hide();
                    $('.menu #more_link').text('more...');
                }
            );
        }
    });

    $("input.assortment[type='submit'], input.assortment[type='image']").click(function(e) {
        e.preventDefault();
        var id = $(this).parents('form').children('input[name*="product_id"]').val();
        var qty = $('select[name*="quantity"]', $(this).parents('form')).val();
        $.get($.url('/shop/assortment_list/'+id+'/'+qty), function(data) {
            Shadowbox.open({
                content:    data,
                player:     "html",
                height:     350,
                width:      600
            });
        });
    });
});

