

window.addEvent('domready', function()
{
	/* this handles the 'SEARCH' text in the search form's input field */
	var el = $('srch');
	
	/* remove the word 'SEARCH' on focus */
	el.addEvent('focus', function()
	{
		if (el.value == 'SEARCH') el.value = '';
	});
	
	/* fade the word 'SEARCH' back in on blur */
	el.addEvent('blur', function()
	{
		if (el.value != '') return;
		
		var color = el.getStyle('color');
		el.setStyle('color', '#FFFFFF');
		el.value = 'SEARCH';
		el.set('tween', {duration:750});
		el.tween('color', color);
	});
});