$(document).ready(
	function()
	{
		$("#search").focus
			(
				function()
				{
					$(this).val('');
				}
			);
	}
);
