function searchFocus(defaultValue) {
	if($('#otsingInput').val() == defaultValue) {
		$('#otsingInput').val("");
	}
}

function searchBlur(defaultValue) {
	if($('#otsingInput').val() == '') {
		$('#otsingInput').val(defaultValue);
	}
}
function checkParing() {
	$("#vorm_teade").html("");
	if($("#first_name").val()=="") {
		$("#vorm_teade").html("Palun sisestage nimi!");
		$("#first_name").focus();
		return false;
	}
	if($("#epost").val()=="") {
		$("#vorm_teade").html("Palun sisestage e-posti aadress!");
		$("#epost").focus();
		return false;
	}
	if($("#suggestion").val()=="") {
		$("#vorm_teade").html("Palun sisestage kirjeldus!");
		$("#suggestion").focus();
		return false;
	}
	
}
function switchKeel() {
	window.location = $("#keel").val();
}
function uus_asukoht() {
	$("#menyypuutop").val($("#Layer12").offset().top);
	$("#menyypuuleft").val($("#Layer12").offset().left);
	$("#mh_puu_asukoht").submit();
}
function avaRubRSeaded(id,kat,keel) {
		$("#modal-dialog-aken-sisu").load('admin/rubr_seaded.php?mid='+id+'&kat='+kat+'&lang='+keel).dialog({resizable: false,width:400,modal: true,draggable: false,"title": "Rubriigi seaded", position: ["center",100]});
}

$(document).ready(function(){
	$( "#modal-dialog-aken-sisu" ).bind( "dialogclose", function(event, ui) {
	  location.reload();
	});
});
