$(document).ready(function() {
	$('#ac-div').tagdragon({
		'field':'q',
		'url':'/autocomplete/autocomplete2.php',
		'tagsep':' ',
		'enclose':'',
		'charMin':2,
		'cache':true,
		'delay':500,
		'max':10,
		"dblClick":false,
		onLoadList: function(filter) { searchRunning(); $('#debug').html("searchRunning");},
		onLoadedList: function(results) { searchDone(); $('#debug').html("searchDone");},
		onSelectItem: function(val) { $('#debug').html("onSelectItem");},
		onSelectedItem: function(val) { $('#debug').html("onSelectedItem");}
	});
	$("#q").keyup(function(event) {
  		if (event.keyCode == '13') {
     		$('#debug').html("keyup");
     		$('#q-form').submit();
   		}
   	});

});
