$(document).ready(function(){
	$("#example").autocomplete("inc/searcher-photoreports.php",{
		width:300,
		max:300,
		minChars: 0,
		autoFill: false,
		mustMatch: false,
		matchContains: true
	}).result(function(event, item){
		var redirect = "http://www.kulturne.com/clanek/"+item[1];
		location.href = redirect;
	});
	
	$("#example2").autocomplete("inc/searcher-articles.php",{
		width:300,
		max:300,
		minChars: 0,
		autoFill: false,
		mustMatch: false,
		matchContains: true
	}).result(function(event, itema){
		var redirect = "http://www.kulturne.com/clanek/"+itema[1];
		location.href = redirect;
	});
		
});
