window.onload = function ()
{
	if (document.getElementById('searchfield'))
	{
		if (document.getElementById('searchfield').className == 'eng')
		{
			document.getElementById('searchfield').value = 'Search';
			document.getElementById('searchfield').onblur = function ()
			{
				this.value = this.value ? this.value : 'Search';
			}
			document.getElementById('searchfield').onfocus = function ()
			{
				this.value = this.value == 'Search' ? '' : this.value;
			}
		}
		else
		{
			document.getElementById('searchfield').value = 'Поиск';
			document.getElementById('searchfield').onblur = function ()
			{
				this.value = this.value ? this.value : 'Поиск';
			}
			document.getElementById('searchfield').onfocus = function ()
			{
				this.value = this.value == 'Поиск' ? '' : this.value;
			}
		}
	}
	document.body.onclick = function ()
	{
		if (document.getElementById('lang')) document.getElementById('lang').fadeOut();
		if (document.getElementById('region')) document.getElementById('region').fadeOut();
	}
	if (document.getElementById('printlink')) document.getElementById('printlink').onclick = function () {window.print()};
	document.body.className = 'isjs';
}