$(function ()
{
	var searchField	= $('#s');
       searchField.value	= 'Brand, Item, Part code...';


	searchField.focus (function () {
	$(this).addClass('active');
		if (this.value == 'Brand, Item, Part code...')
			this.value	= '';
	});

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

