/*
  Script for searchform
  Uses jquery
  (c)2010, www.vaclavnemec.com
*/

$(document).ready(function() {  
  $("#s").focus(function(){
    if ($("#s").val() == "Hledat..."){
      $("#s").val("");
    }
  });
  $("#s").focusout(function(){
    if ($("#s").val() == ""){
      $("#s").val("Hledat...");
    } 
  });
  
  //script for hiding children menu
  jQuery(".page_item ul").hide();
  jQuery(".current_page_item ul:first").show();
  jQuery(".current_page_item").parents("ul, li").map(function () {
    jQuery(this).show();
  });

});
