
		var force_newSearch_value;

		function ahoj(text) {

			$.getJSON("/res/ajax_results.php",{kod: text, mode: 'uir_select', sub_mode: 'get_kod_hp'}, function(data){

				if(strpos(data, "Praha", 1)) {
					$("#kde_mesto").click();
				} else {
					$("#kde_okres").click();
				}
				$("#newSearch").val(data);
				$('#mapa_cr').toggle('slow');
				$("#zobrazit_mapu_btn").text('Vybrat lokalitu na mapě');
				$('html, body').animate({scrollTop:0}, 'slow');
			});
		}


		var qtipcontent = '<strong>Příklady</strong>: <ul><li>"Jihlava"</li><li>"Ústí (Jihlava)"</li></ul>';
		function toggleQtip() {
			if ($("input[name=kde_kind]:checked").val() == 'mesto') {
				qtipcontent = '<strong>Příklady</strong>: <ul><li>"Jihlava"</li><li>"Ústí (Jihlava)"</li></ul>';
			} else {
				qtipcontent = '<strong>Příklady</strong>: <ul><li>"Hlavní město Praha"</li><li>"Brno-město"</li><li>"Jihlava"</li></ul>';
			}
			$('input#newSearchX').qtip('destroy');

			$('input#newSearchX').qtip({
				content: qtipcontent,
				style: {
					name: 'cream', // Inherit from preset style
					border: {
						width: 3,
						radius: 5
					},
					tip: 'topLeft'
				},
				position: {
					corner: {
						target: 'bottomLeft',
						tooltip: 'topLeft'
					},
					adjust: {
						x: 10, y: 5
					}
				}
			});
		}

	$(document).ready(function(){

			$('input#newSearch').focus();

			$('input#newSearchX').qtip({
				content: qtipcontent,
				style: {
					name: 'cream', // Inherit from preset style
					border: {
						width: 3,
						radius: 5
					},
					tip: 'topLeft'
				},
				position: {
					corner: {
						target: 'bottomLeft',
						tooltip: 'topLeft'
					},
					adjust: {
						x: 10, y: 5
					}
				}
			});
		});



