jQuery(function() {

	var onAutocompleteSelect = function(value, data) {
		document.location=data;
	}

	var options = {
		serviceUrl: '/searchauto/',
		width: 600,
		zIndex: 99999,
		minChars: 2,
		delimiter: /(,|;)\s*/,
		onSelect: onAutocompleteSelect,
		deferRequestBy: 0,
		noCache: false
	};

	jQuery('#query').autocomplete(options);

	jQuery('#query').click(function(){
		jQuery(this).val('');
	});

});
