$().ready(function() {
	$("#searchInput").autocomplete("/jquery/autocomplete/suggestSearch.php", {
		width: 172,
//		multiple: true,
//		multipleSeparator: ", ",
//		autoFill: true,
		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) {

//		alert(row[1]);
//		$("#searchInput").attr("value", row[1]);
//		location.href = "?modul=vyhledavani&search="+row[1];
//	})

});
