/**
 * Strucny popis souboru
 *
 * 
 *
 * Author: Mpro
 * @copyright	(c) 2010 IT STUDIO s.r.o.
*/

var reEscape = new RegExp('(\\' + ['/', '.', '*', '+', '?', '|', '(', ')', '[', ']', '{', '}', '\\'].join('|\\') + ')', 'g');
	
$(document).ready(function(){

	$('#search_input').autocomplete({ 
		serviceUrl: web_root_lang + 'scripts/hledej_ajax.php',
		minChars:2, 
		maxHeight:400,
		width:300,
		zIndex: 9999,
		deferRequestBy: 0, //miliseconds
		noCache: false, //default is false, set to true to disable caching
		onSelect: function(value, data){
			if(data == "")
			{
				return false;
			}
			else
			{
				window.location.href = data; // presmerovani na polozku
			}
		}
	  });
});
