Сообщение от рони
			 
		
	 | 
	| 
		не осилил, подсказать не могу
	 | 
	
Можете хотя бы подсказать как сделать вот этот код:
$("#filters :checkbox").click(function() {
       $(".obertka").removeClass('active');
	   $(this).parent().removeClass('active');
		$("#filters :checkbox:checked").each(function() {
           $("." + $(this).val()).addClass('active');
		   $(".obertka" + "." + $(this).val()).parents(':hidden').slideDown('slow'); 
	   });
		var ober = $(".obertka" + "." + $(this).val());
		ober.each(function () {
			if (ober.hasClass('active')) {
    			$(this).parent().find('.obertka:not(.active)').addClass('hide');
    			$(this).parent().addClass('active');
				$(this).parent().parent().addClass('active');
				$(this).parent().parent().parent().find('.lvl3:not(.active)').addClass('act');
  			} else {
    			$(this).parent().find('.obertka:not(.active)').removeClass('hide');
    			$(this).parent().removeClass('active');
				$(this).parent().parent().removeClass('active');
				$(this).parent().parent().parent().find('.lvl3:not(.active)').removeClass('act');
			}
		});
	});
Срабатывал как в "аккордеоне", т.е переключался по очереди?