// template.js

jQuery(function(){

  jQuery('#loginBtn') // Open Login-Panel
    .click(  // click on button
      function() {
        jQuery('#loginPanel')
          .slideToggle('slow');
      }
    );

  jQuery('#loginCloseBtn') // Close Login-Panel
    .click(  // click on button
      function() {
        jQuery('#loginPanel')
          .slideToggle('slow');
      }
    );

  jQuery('#footSlideBtn')
    .click(  // click on button
      function() {
        jQuery('#footerPanel')
          .slideToggle();
      }
    );
  

  
});

