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