$("#check_all").click(function () {
var t = $(this).parents('.list-group');
t.find('input[type=checkbox]').each(function() {
this.checked = true;
});
});
$("#unchecked_all").click(function () {
var t = $(this).parents('.list-group');
t.find('input[type=checkbox]').each(function() {
this.checked = false;
});
});