(function($){	$.fn.autoSelect = function(settings)	{		var defaultSearchString = $(this).attr('value');					$(this).attr('value', defaultSearchString);				$(this).click(function()		{			($(this).attr('value') == defaultSearchString) ? $(this).attr('value', '') : $(this).select();		}).blur(function()		{			if ($(this).attr('value') == '') { $(this).attr('value', defaultSearchString); }		});	};})(jQuery);