Links below sliding panel are not working

Links below sliding panel are not working

Hello,

I have put a sliding panel inside an absolute positioned DIV. The layer is on top of a navigation. (z-index:30;) Unfortunately, even when the panel is "hidden" the links on the layer below  are not functionning.

This is the slide panel I use:

<script type="text/javascript">
$(document).ready(function(){
 $('#panel').hide(); // Hide div by default
    $(".btn-slide").click(function(){
      $("#panel").slideToggle("slow");
      $(this).toggleClass("active");
    });

});
   
Thanks for your help, I am new to jquery