$(document).ready(function(){
    $('#menu_glowne li').mouseover(
        function(){
            $(this).children('.podmenu').stop(true, true).fadeIn();
        }
    );
    $('#menu_glowne li').mouseleave(
        function(){
            $(this).children('.podmenu').stop(true, true).fadeOut('fast');
        }
    );
})
