﻿$(document).ready(function () {
    $('.autocomplete').autocomplete(
		'/AutocompleteService.aspx',
		{
			delay:10,
			minChars:2,
			matchSubset:1,
			matchContains:1,
			cacheLength:10,
			onItemSelect:function () {},
			onFindValue:function (e) { },
			formatItem:function (row) { return row[0]; },
			autoFill:false
		}
	);
});
