$(document).ready(function(){
    $("#chek1").change( function () {
        if ( $(this).is(':checked') )
        {
            $(".box1").find('input').attr("checked", true);
        }else{
            $(".box1").find('input').attr("checked", false);
        }
    });

    $(".box1 label input").change( function () {
        if ($(this).parent().parent().find("label").find("input").is(":checked"))
        {
            $("#chek1").attr("checked", true);
        }else{
            $("#chek1").attr("checked", false);

        }
    });

    $("#chek2").change( function () {
        if ( $(this).is(':checked') )
        {
            $(".box2").find('input').attr("checked", true);
        }else{
            $(".box2").find('input').attr("checked", false);
        }
    });

    $(".box2 label input").change( function () {
        if ($(this).parent().parent().find("label").find("input").is(":checked"))
        {
            $("#chek2").attr("checked", true);
        }else{
            $("#chek2").attr("checked", false);
        }
    });

    $("div.col1 ul li").click(function(){
        $("div.col1 ul li").removeClass('active');
        $(this).addClass('active');
    });
});
