$(document).ready(function(){
	
	$(".docist").hide();

	$(".ukaz").click(function(){
		$(this).prev(".docist").slideToggle("slow")
		.siblings(".docist:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings(".ukaz").removeClass("active");
		return false;
	});

});