
jQuery(document).ready(function() {
	jQuery("#searchTerm").autocomplete(
		"/includes/auto_ajax.cfm",
		{
			minChars:2,
			max: 50,
			delay:1,
			autoFill:false,
			matchSubset:false,
			matchContains:1,
			cacheLength:1,
			selectOnly:1,
			scrollHeight:300
		}
	);

});

