$(document).ready(function(){

$("#menu ul li").bind("mouseenter", function() { 
$(this).children("ul").slideDown("slow");
 });

 $("#menu ul li").bind("mouseleave", function() { 

$(this).children("ul").stop(true, true).slideUp(); 

});





$("#vyroba-menu ul li").bind("mouseenter", function() { 
$(this).children("ul").fadeIn("speed");
 });

 $("#vyroba-menu ul li").bind("mouseleave", function() { 

$(this).children("ul").stop(true, true).fadeOut(); 

});






$("#prodej-menu ul li").bind("mouseenter", function() { 
$(this).children("ul").fadeIn("speed");
 });

 $("#prodej-menu ul li").bind("mouseleave", function() { 

$(this).children("ul").stop(true, true).fadeOut(); 

});





});
