(function($){
	$(document).ready(function() {
		$('.arr-icon').parent('h2')
			.click(function(){
				$(this)
					.parents('.item-rem')
					.toggleClass('item-rem-opened');
				return false;
			});
			
		$("input[type='checkbox']").attr('checked', 'true');
	});
})(jQuery);

