﻿
function CategorySelect() {
    var cnt = $('.catItem :checked').size();

    if (cnt > 0) {
        $('.fBrands').prop('disabled', true);
        $('.fBrands').children().prop('disabled', true).addClass('disabled');
        $('.catItem :checked').each(function() {
            $('.' + $(this).parent().attr('CatVal')).prop('disabled', false);
        });
        $('.catItem :checked').each(function() {
            $('.' + $(this).parent().attr('CatVal')).children().prop('disabled', false).removeClass('disabled');
             });
    }
    else {
        $('.fBrands').prop('disabled', false);
        $('.fBrands').children().prop('disabled', false).removeClass('disabled');
    }
}
