$(document).ready(function(){ 
// Событие нажатия на фильтр
    $('.popup-block-show').click(function(){ 
        $('.popup-block').hide()
        $(this).next('.popup-block').fadeIn(500)
    })
// Событие закрытия фильтра
    $('.popup-block-close').click(function(){ 
        $(this).parent().parent().parent().parent().parent().stop()
        $(this).parent().parent().parent().parent().parent().fadeOut(500)
    })
// Событие галочки
    $('.check').toggle(function(){ 
           $(this).css({ 'background-position':'bottom'})
           name = $(this).parent().parent().parent().parent().parent().parent().attr('id')
           console.log(name)
           id = $(this).parent().find('input').attr('value')
           $('.data').append('<input type="hidden" name="'+name+id+'" id="'+name+id+'" value="'+id+'"/>')
        },
        function(){ 
            $(this).css({'background-position':'top' })
            id = $(this).parent().find('input').attr('value')
            name = $(this).parent().parent().parent().parent().parent().parent().attr('id')
            $('#'+name+id).remove()
    })
// Сброс всех параметров
    $('#empty_params').click(function(){ 
        $('.check').css({ 'background-position':'top'})
        $('.data').html("")
    })
})

