$(document).ready(function() {


  //menu-up background
  $("#menu li a").hover(
    function() {
      $(this).parent().prev().find("a").addClass("nobg");
    },
    function() {
      $(this).parent().prev().find("a").removeClass("nobg");
    }
  );

  $("#email, #hledane-slovo").focus(function() {
    $(this).attr("value", "");
    $(this).css( 'font-style', 'normal' );
  });

  $(".mnozstvi").click( function() {
  		$(this).children("input").focus();
  });

  $("#submenu a.clickable").click( function() {
  	$(this).parent().children("ul").slideToggle();
  	return false;
  });

  if( typeof onStartUp == 'function' ) {
  	onStartUp();
  }

})

function showOrHideSubmenu(p) {
  if(p.parentNode.className == "" && p.parentNode.getElementsByTagName('ul')[0])/*IF not active and has nextLevelMenu*/
    p.parentNode.className = "active";
  else
    p.parentNode.className = "";
}


