$().ready(function() {
	$("#link_tags").autocomplete("/tagsearch.php", {
		width: 320,
		max: 6,
		highlight: false,
		multiple: true,
		multipleSeparator: ",",
		maxWordsCount: 5, // code by vincy
		scroll: true,
		scrollHeight: 300
	});

	$("#tag_search").autocomplete("/tagsearch_sidebar.php", {
		width: 220,
		max: 6,
		highlight: false,
		multiple: false,
		multipleSeparator: " ",
		scroll: true,
		scrollHeight: 300
	});
	
	
});



