$(document).ready(function(){
$(".pozice_a").click(function(){
        var r = $(this).attr("rel");
        $("#"+r).slideToggle(); 
        return false; 
});


$("input#query").keyup(function(event){
  var dotaz = $(this).val();
  var jazyk = $("input#querylang").val();
  if ($("input#query").val().length>0){
  $.get("/gethint.php", { lang: jazyk, q: dotaz },
  function(data){
    $("#nasept").remove();
    $("#search").append("<div id=\"nasept\">"+data+"</div>");
  });
    }
  else {
  $("#nasept").remove();
  }
}).keyup();

  $("body").click(function () {
          $("#nasept").remove();
    });
  $("a.active").click(function(){
  return false;
  });

});