   
      $(document).ready(function() {
   
       // hides the slickbox as soon as the DOM is ready
  
       // (a little sooner than page load)
 
        //$('#stockrest').hide();
   
 
       
  
       // toggles the slickbox on clicking the noted link 
  
        $('a#slick-toggle').click(function() {
  
          $('#stockrestlooser').toggle(600);
          $('#stockrestwinner').toggle(600);
  		  $('#slick-toggle').text($(this).text() == 'Visa fler' ? 'Visa mindre' : 'Visa fler');
          return false;
  
        });
 
       
 
      });

