window.onload = function ()
{
	if (document.getElementById('search'))
	{
		document.getElementById('search').value = 'поиск...';
		document.getElementById('search').onblur = function ()
		{
			this.value = this.value ? this.value : 'поиск...';
		}
		document.getElementById('search').onfocus = function ()
		{
			this.value = this.value == 'поиск...' ? '' : this.value;
		}
	}
}