$(document).ready(function() {
	$("input#find2").autocomplete(
		"stuff.php",
		{
			delay:25,
			minChars:1,
			cacheLength: 100,
			maxItemsToShow: 10,
			width: 200,
			onItemSelect : function () {
				$("form#search").submit();
			}
		}
	);
});
