/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
                    $(function () {

                        $('.brend-checkbox').not('#brend-all-checkbox').click(function() {
                            $('#brend-all-checkbox:checked').each(function(){
                                this.checked = false;
                            });
                        });

                        $('#brend-all-checkbox').click(function() {
                            if(this.checked)
                                $('.brend-checkbox').each(function(){
                                    this.checked = true;
                                });
                            else
                                $('.brend-checkbox').each(function(){
                                    this.checked = false;
                                });
                        });
                    });


