
function ddMenu(id)
{
	var h = document.getElementById('service');
	if ($("#"+id).is(":hidden"))
	{
       	h.timer = setTimeout(function ()
       	{
			if (id != 'service')
			{
				$('#service').hide();
				$('#service_menu').attr('class', 'ddheader_noselect');
			};

			if (id != 'question')
			{
				$('#question').hide();
				$('#question_menu').attr('class', 'ddheader_noselect');
			};

			if (id != 'products')
			{
				$('#products').hide();
				$('#products_menu').attr('class', 'ddheader_noselect');
			};

			if (id != 'news')
			{
				$('#news').hide();
				$('#news_menu').attr('class', 'ddheader_noselect');
			};

			if (id != 'company')
			{
				$('#company').hide();
				$('#company_menu').attr('class', 'ddheader_noselect');
			};

			if (id != 'contact')
			{
				$('#contact').hide();
				$('#contact_menu').attr('class', 'ddheader_noselect');
			};

			$('#'+id+'_menu').attr('class', 'ddheader_select');
			//$('#'+id).slideToggle(400);
			$('#'+id).show();

       	},50);
    };
}


function cancelHide(id)
{
	var h = document.getElementById('service');
	clearTimeout(h.timer);
}

function AddToCart(name, price)
{
	$.ajax({
    url: "http://bioec.ru/_form2.php?mode=add",
    type: "POST",
    data: 'name='+name+'&price='+price,
    success: function (data)
    	{
			document.location.href= '/order/';
	    }
	});
};

function search_yandex(query)
{
	window.location = 'http://yandex.ru/sitesearch?searchid=106671&text='+query;
};


