/**
 * @author Serge_RUS sugia@yandex.ru
 */
$(
	function(){
		$("ul.mat_list > li:not(li.active, li.deactive)").not(":has(div)").addClass('hasItem').children('strong').next().hide()
		$("ul.mat_list > li:not(li.active, li.deactive)").not(":has(div)").addClass('hasItem').children('strong').toggle(
		function(){
  		$(this).next().slideDown('slow');
  	}, 
		function(){
  		$(this).next().slideUp('slow');
  	})
  }
);

