function clean(A){
var B=A.previousSibling;
	if(B)
	{
		A.onblur=function()
		{
			if(!A.value){B.style.top=""}
		};
	B.style.top="-9999px"
	}
}

text_seacher="Поиск Google";

function replace_seacher(obj)
{
	d=document.getElementById('serch_field');
	if (obj.innerHTML=="сменить на Яндекс")
	{
		obj.innerHTML="сменить на Google";
		d.style.color = "#999999";
		d.value="Поиск Яндекса";
		text_seacher="Поиск Яндекса";
		
		document.getElementById("cse-search-box").action="http://yandex.ru/sitesearch";
		document.getElementById("serch_field").name="text";
	}
	else
	{
		obj.innerHTML="сменить на Яндекс";
		d.style.color = "#999999";
		d.value="Поиск Google";
		text_seacher="Поиск Google";
		
		document.getElementById("cse-search-box").action="http://www.tamognia.ru/search/index.php";
		document.getElementById("serch_field").name="q";
	}
}