
// -------------- Netzwerk Menü

jQuery(document).ready(function($) {
  $(".network").hover(
    function () {
      $("> .subnav", this).fadeIn('fast');
    },
    function () {
      $("> .subnav", this).fadeOut('fast');
    }
  );
});
