$( function() {
	
	// select all checkboxes
	$('.m28-6 a.select-all').click( function() { 
		$(this).parents('div')
			.find('input:checkbox')
			.attr('checked', true)
			.closest('span').addClass('checked');
	} );
	
	// unselect all checkboxes
	$('.m28-6 a.select-none').click( function() { 
		$(this).parents('div')
			.find('input:checkbox')
			.attr('checked', false)
			.closest('span').removeClass('checked');
	} );
	
} );