
jQuery(function(){
	options = {
		serviceUrl: '/portal/search_hints.php',
		zIndex: 9999,
		minChars: 2,
		width: 300,
		maxHeight: 400,
		noCache: true,
		deferRequestBy: 500,
		onSelect: function( value, data ) { window.location = data; }
	}
		a = jQuery('.autocomplete').autocomplete(options);

	options = {
		serviceUrl: '/portal/search_hints.php',
		zIndex: 9999,
		minChars: 2,
		width: 300,
		maxHeight: 400,
		noCache: true,
		deferRequestBy: 500,
		params: { shop_id: 165378 },
		onSelect: function( value, data ) { window.location = data; }
	}

	a = jQuery('#bakelit-search').autocomplete(options);

});


