$(document).ready(function(){
function liFormat (row, i, num) {
	var result = row[1] + ' ' + row[2];
	return result;
}
function selectItem(li) {
	if( !!li.extra ) var sValue = 'Карта-схема № ' + li.extra[0] + ' - <b>'+ li.extra[1] + ' '+ li.extra[2] + '</b> <a href="/scheme/' + li.extra[3] + '" target="_blank">Скачать</a> ';
	else var sValue = li.selectValue;
	document.getElementById("res").innerHTML = sValue;
	
	}
function formatRes (row, i, num) {
	var result = row[1]+ ' ' + row[2];
	return result;
}
jQuery("#street").autocomplete("/dvor/autocomplete.php",{
	delay:10,
	minChars:1,
	matchSubset:1,
	autoFill:false,
	matchContains:1,
	cacheLength:20,
	selectFirst:true,
	formatItem:liFormat,
	formatResult:formatRes,
	maxItemsToShow:200,
	onItemSelect:selectItem,
	}); 
});
