$(function ()
{
	var searchField	= $('#s');
	searchField.focus (function ()
	{
		if (this.value == 'Item, Brand, Part code...')
			this.value	= '';
	});
	searchField.blur (function ()
	{
		if (this.value == '')
			this.value = 'Item, Brand, Part code...';
	});
	$('#qsearch').submit (function ()
	{
		var keyword	= searchField.val ();
		return ((keyword != '') && (keyword != 'Item, Brand, Part code...'));
	});
});
