// jQuery Stuff for the aarePlast Website


(function($) {
  $(document).ready(function() {

    // --------- Hauptnavigation --------- //

    $('.main-link-wrapper').hover(function() {
      $(this).find('.sub-link-wrapper').show();
    },
    function() {
      $(this).find('.sub-link-wrapper').hide();
    });

  });
})(jQuery);;

