function formatSearch(row) {
	return row[2] + ' > ' + row[1];
}

function redirectSearch(event, data, formatted) {
	$('#search_query').val(data[1]);
	document.location.href = data[3];
}

$('document').ready( function() {
	$("#search_query").autocomplete(
		'http://www.rallyeshop.cz/search.php', {
		minChars: 3,
		max:10,
		width:500,
		scroll: false,
		formatItem:formatSearch,
		extraParams:{ajaxSearch:1/*,id_lang:{/literal}{$cookie->id_lang}{literal}*/}
	}).result(redirectSearch)
});

