		$(function (){
			$("#nameSelect").autocomplete(
				"/?m=msg&do=usersList",
				{
				    maxItemsToShow:10,
				    cacheLength:20,
			    	minChars:2,
	   				matchSubset:1,
	    			matchContains:1,
				    selectFirst:true,
					formatItem: function(item) {
						var ans = item[0];
						if (item[1]!=="")
						   ans = ans + " ("+item[1]+")";
						return ans;
					}
				}
			).result(function(event, item) {
				//location.href = "/?m=profile&do=user&id="+item[1]+"";
				$("#goToUserLink").attr("href", "/?m=profile&do=user&id="+item[2]+"");
				var ans = item[0];
				if (item[1]!=="")
				   ans = ans + " ("+item[1]+")";
				$("#goToUserLink").text("открыть профиль "+ans);
				$("#nameSelect").attr("value",item[0]);
			}).attr("disabled","");
		});
