// JavaScript Document
$(function () { // this line makes sure this code runs on page load
	$('.checkAll').click(function () {
		$(this).parents('fieldset:eq(0)').find(':checkbox').attr('checked', this.checked);		     
	});
});