		$(document).ready(function( ) {
		 //$('.content-hide').hide(1);
		 $('.content-visible').toggle(
				function() {
				$('.content-hide').show(1);
				$('.content-vh').hide(1);
				},
				function() {
				$('.content-hide').hide(1);
				$('.content-vh').show(1);
				}
			); 

		 $('.a-hide').hide(1);
		 $('.a-visible').toggle(
				function() {
				$('.a-hide').show(1);
				$('#dopinfo').html('<a href="">Скрыть подробную информацию</a>');
				$(this).addClass('up');
				},
				function() {
				$('.a-hide').hide(1);
				$('#dopinfo').html('<a href="">Подробнее о продукции</a>');
				$(this).removeClass('up');
				}
			); 


		 $('.faq-name').toggle(
				function() {
				$(this).next().show(1);
				},
				function() {
				$(this).next().hide(1);
				}
			); 




		});

