/* Управление спойлером */
$(document).ready(function() {
	
	$('.AP_spoller_content').hide();
	$('.AP_spoller_header').toggle(function() {
		$(this).next().slideDown(500);
		$(this).removeClass('AP_spoller_content').addClass('AP_spoller_header_open')
	},
	function() {
		$(this).next().slideUp(500);
		$(this).removeClass('AP_spoller_header_open').addClass('AP_spoller_content')
	});
});
$(document).ready(function() {
	
	$('.CPI_spoller_content').hide();
	$('.CPI_spoller_header').toggle(function() {
		$(this).next().slideDown(500);
		$(this).removeClass('CPI_spoller_content').addClass('CPI_spoller_header_open')
	},
	function() {
		$(this).next().slideUp(500);
		$(this).removeClass('CPI_spoller_header_open').addClass('CPI_spoller_content')
	});
});
