$(function() {
	
	$("#txtSearch").autocomplete({
		source: "/html/searchSuggest2.php",
		minLength: 2,
		select: function(event, ui) {
			$('#txtSearch').val(ui.item.label);
			location.href = ui.item.url;
		}
	});
});

