

function initialiseFindProperty () {
	$("#location_search_street_number").autocomplete("/data",
		{
			delay:10,
			minChars:5,
			matchSubset:1,
			matchContains:1,
			cacheLength:10,
			maxItemsToShow:30,
			onItemSelect:selectItem,
			onFindValue:findValue,
			formatItem:formatItem,
			autoFill:true
		}
	)
}
$(document).ready(function(){
	
if($("#location_search_street_number")){
	    initialiseFindProperty();
}
});

function findValue(li) {
	if( li == null ) return alert("No match!");

	// if coming from an AJAX call, let's use the CityId as the value
	if( !!li.extra ) var sValue = li.extra[0];

	// otherwise, let's just display the value in the text box
	else var sValue = li.selectValue;
	$("#search_gas_form").submit();
}

function selectItem(li) {
	findValue(li);
}

function formatItem(row) {
	return row[0];
}

function lookupAjax(){
	var oSuggest = $("#location_search_street_number")[0].autocompleter;

	oSuggest.findValue();

	return false;
}