$(document).ready(function(){
	$('#apply_filter_by_brands').click(function() {
		if($(this).hasClass('not_active')){
			$(this).removeClass('not_active');
			$(this).addClass('active');
			$('#apply_filter_by_types').removeClass('active');
			$('#apply_filter_by_types').addClass('not_active');
			$('#apply_filter_by_custom').removeClass('active');
			$('#apply_filter_by_custom').addClass('not_active');

			$('#menu_brands').css('display', 'block');
			$('#menu_types').css('display', 'none');
		}
	});

	$('#apply_filter_by_types').click(function() {
		if($(this).hasClass('not_active')){
			$(this).removeClass('not_active');
			$(this).addClass('active');
			$('#apply_filter_by_brands').removeClass('active');
			$('#apply_filter_by_brands').addClass('not_active');
			$('#apply_filter_by_custom').removeClass('active');
			$('#apply_filter_by_custom').addClass('not_active');
			
			$('#menu_brands').css('display', 'none');
			$('#menu_types').css('display', 'block');
		}
	});
	
	$('.footer_search_and_rights').find('#searchstring').focusin(function(){
		if($(this).val() == 'Поиск товаров'){
			$(this).val('');
		}
	});
	
	$('#searchstring').focusin(function(){
		if($(this).val() == 'Поиск товаров'){
			$(this).val('');
		}
	});

	$('.footer_search_and_rights').find('#searchstring').focusout(function(){
		if($(this).val() == ''){
			$(this).val('Поиск товаров');
		}
	});

	$('#searchstring').focusout(function(){
		if($(this).val() == ''){
			$(this).val('Поиск товаров');
		}
	});
});


