$(function() {
	$('#selectall').click(function() {
		if ($(this).attr('checked')==true) {
			$('table :checkbox').attr('checked',true);
		}
		else {
			$('table :checkbox').attr('checked',false);
		}
	});
});