window.onload = function()
{
	var search = document.getElementById('input_search');
	var name = document.getElementById('input_subscribe_name');
	var email = document.getElementById('input_subscribe_email');

	search.onfocus = function(){if(this.value == "Поиск по сайту…")this.value = ""};
	search.onblur = function(){if(this.value == "")	this.value = "Поиск по сайту…"};

	name.onfocus = function(){if(this.value == "Ваше имя")this.value = ""};
	name.onblur = function(){if(this.value == "")	this.value = "Ваше имя"};

	email.onfocus = function(){if(this.value == "E-mail")this.value = ""};
	email.onblur = function(){if(this.value == "")	this.value = "E-mail"};
}
