var searchDefaultValue = 'Search...';

function isFocused(inputId, defaultValue)
{
	inputItem = document.getElementById(inputId);
	if (inputItem.value == defaultValue)
	{
		inputItem.style.color = '#333';
		inputItem.value = '';
	}
}

function isBlured(inputId, defaultValue)
{
	inputItem = document.getElementById(inputId);
	if (inputItem.value == '')
	{
		inputItem.style.color = '#999';
		inputItem.value = defaultValue;
	}
}

