$(document).ready(function(){
    /* (c) fcxxff tempb(at)prokonto(dot)pl */
    $('.menu-item').hover(function(){
        _width = $(this).width();
        $(this).css({'width':_width});
        var _subMenu = $(this).find('.sub-menu');
        _subMenu.stop(true,false).show();
},function(){
       var _subMenu = $(this).find('.sub-menu');
       _subMenu.stop(true,true).delay(300).fadeOut(10);
   },300);
    

});
