$().ready(function() {
	$("#searchInput").autocomplete("/jquery/autocomplete/suggestSearch.php", {
		width: 149,
//		multiple: true,
//		multipleSeparator: ", ",

		minChars:2,
		maxItemsToShow:10,
//		loadingClass: "ac_loading",
		matchContains: true,
		formatItem: function(row, i, max) { // zformatuje nacteny zaznam
			return "" + row[1] + ""; // i + "/" + max + 
		},
		formatMatch: function(row, i, max) { // zformatuje prvni zvoleny zaznam
			return "" + row[1] + ""; // + " " + row[1];
		},
		formatResult: function(row, i, max) { // zformatuje hodnotu vracenou do inputu
			return "" + row[1] + "";
		},
		scroll: true,
		scrollHeight: 120
	}).result(function(event, row) {
		document.getElementById('cse-search-box').submit();
		//location.href = "?search="+row[1];
	});

});
