jQuery(function() {

	var onAutocompleteSelect = function(value, data) {
		document.location=data;
	}

	var options = {
		serviceUrl: '/search/autocomplete/',
		width: 600,
		zIndex: 99999,
		minChars: 2,
		delimiter: /(,|;)\s*/,
		onSelect: onAutocompleteSelect,
		deferRequestBy: 0,
		noCache: false
	};

	jQuery('input[name="q"]').autocomplete(options);

});
