$(document).ready(function() {
	$('div.cat_list').each(function(){
		var c = $(this).find('input:checkbox:checked');
		$(c).each(function() {
			var id = parseInt($(this).attr('rel'));
			$('#cat_'+id).show();
		});
	});	

$('a.cat_list_toggle').click(function() {
	var id = parseInt($(this).attr('rel'));

	$('#cat_'+id).toggle();
	return false;
});
	
$('input.cat_list_toggle').change(function() {
	var checked = $(this).attr('checked') === true;
	
	$(this).attr('checked',($(this).attr('checked') ? false : true));
	
	$(this).parent().find('input:checkbox').each(function(){
		$(this).attr('checked',checked);
	});
});
});
