$(document).ready(function(){
  // Górne menu
  $("#top-menu li > a").mouseenter(function() {
    $(this).parent("li").children("ul").fadeIn(100);
  });
  $("#top-menu li > a").parent("li").mouseleave(function() {
    $(this).children("ul").fadeOut(100);
  });
});
