
$(document).ready(function()
{

	$(".admin_sections_tree_checkbox").click(function()
	{
		if ($(this).attr('checked'))
			$(this).parent('div').find('input[type=checkbox]').attr('checked',true);
		else
			$(this).parent('div').find('input[type=checkbox]').attr('checked',false);
	});

	$('.block_fading_in').fadeIn(1200);

});
