$(function ()
{
	var searchField	= $('#keywords');
	searchField.focus (function ()
	{
		if (this.value == 'Brand, Item, Part code...')
			this.value	= '';
	});
	searchField.blur (function ()
	{
		if (this.value == '')
			this.value = 'Brand, Item, Part code...';
	});
	$('#qsearch').submit (function ()
	{
		var keyword	= searchField.val ();
		canSearch	= ((keyword != '') && (keyword != 'Brand, Item, Part code...'));
		if (!canSearch)
		{
			searchField.css ('backgroundColor', '#FF0000');
			setTimeout (function () { searchField.removeAttr ('style') }, 200);
		}	
		return (canSearch);
	});
});
