$('.child').click(function() {
$("#all").prop("checked",$(".child").length==$(".child:checked").length);
});}
}, 'json');
}
$(function(){
$("#all").click(function(){
// alert($(this).attr("check"));
$('.child').prop("checked",$(this).prop("checked"));
})
})