function ld() {
	$drz = $(this).next().val();
	$str = "/include/auto-gume/ws.php" + "?act=mesto&mesto=" + $(this).val() + "&drz="
			+ $drz + "&brandid=" + $(this).next().next().val() + "&rand="
			+ Math.random() * 999;
	$(".mestarezultati" + $drz + " .loading").show();
	$(".mestarezultati" + $drz + " .r").load($str, null,
			function(responseText, textStatus, XMLHttpRequest) {
				$(".mestarezultati" + $drz + " .loading").hide();
			});
}
function resClick(event) {
	event.preventDefault();
	$arr = $(this).attr("href").split('/');
	$arr = $arr.slice(3,$arr.length);
	$str = "/include/auto-gume/ws.php?act=strane&sirina=" + $arr[0] + "&ar=" + $arr[1] + "&ER=" +$arr[2] + "&speed=" + $arr[3] + "&brand=" + $arr[4] + "&vrsta_gume=" + $arr[5] + "&vrsta_voz=" + $arr[6] + "&page_num=" + $arr[7];
	$("div#rezultati").fadeTo("slow",0);
	$("div#rezultati").load($str, null,
				function(responseText, textStatus, XMLHttpRequest) {
					$(".pages a").click(resClick);
					$("div#rezultati").fadeTo("fast",1);
				});
}
$(document).ready(function() {
	history.navigationMode = 'compatible';
	$(".fizbor_mesta input").hide();
	$(".fizbor_mesta select").change(ld);
	$(".pages a").click(resClick);
});
