$(document).ready(function() {
	$('#sortowanie').change(function() {
		$('#smallFilterForm').submit();
	});
	$('#ilosc').change(function() {
		$('#smallFilterForm').submit();
	});
	$('#pogrupuj_wg_kategorii').click(function() {
		$('#smallFilterForm').submit();
	});
	
	
	$('#groupActions :input').hide();
	$('#groupActions label[class!=\'groupActionLabel\']').hide();
	$('#groupActions :radio , #groupActions :submit').show();
	$('#groupActions :radio').click(function() {
		var name = $(this).attr('id').replace('radio_','');
		$('#groupActions :input').hide();
		$('#groupActions :radio, #groupActions :submit').show();
		if (name == 'status') {
			$('.'+name).show();
			$('#groupActions label[class!=\'groupActionLabel\']').show();
		} else {
			$('#'+name).show();
			$('#groupActions label[class!=\'groupActionLabel\']').hide();
		}
	});
	
	$('#allArticles').click(function() {
		if ($(this).attr('checked')) {
			$('.articleCheckbox').attr('checked','checked');
		} else {
			$('.articleCheckbox').attr('checked','');
		}
	});
});
