checkBoxes.attr("checked", !checkBoxes.attr("checked"));
$('#choose_address2').click(function(){
$('.toggle').each(function(){
$(this).prop('checked', !$(this)[0].checked);
})
})
$("#chkAll").on("click",function(){
$("input[name=checkBoxName]").prop("checked",$(this).prop("checked"));
});
$(document).ready(function() {
$("#select-all-teammembers").click(function() {
var checkBoxes = $("input[name=recipients[]]");
checkBoxes.prop("checked", !checkBoxes.prop("checked"));
});
});