$("[id*=chkAll]").live("click", function () {
if ($(this).is(":checked")) {
$("[id*=chkFruits] input").attr("checked", "checked");
} else {
$("[id*=chkFruits] input").removeAttr("checked");
}
});
$("[id*=chkFruits] input").live("click", function () {
if ($("[id*=chkFruits] input").length == $("[id*=chkFruits] input:checked").length) {
$("[id*=chkAll]").attr("checked", "checked");
} else {
$("[id*=chkAll]").removeAttr("checked");
}
});