$(window).ready(function(){
	$('#sstr').autocomplete({ 
		serviceUrl:'ajax.php',
		minChars:3, 
		delimiter: /(,|;)\s*/, // regex or character
		maxHeight:200,
		width:200,
		zIndex: 9999,
		deferRequestBy: 0,
		noCache: false
	});
	$('#sstr2').autocomplete({ 
		serviceUrl:'ajax.php',
		params:{qq:'word'},
		minChars:3, 
		delimiter: /(,|;)\s*/,
		maxHeight:200,
		width:400,
		zIndex: 9999,
		deferRequestBy: 0,
		noCache: false
	});
});
