$(document).ready(function() {   
       // hides the slickbox as soon as the DOM is ready   
       // (a little sooner than page load)
	   $('#reportaz').show(); 
       // toggles the slickbox on clicking the noted link    
        $('h2#reportaz-toggle').click(function() {  
          $('#reportaz').toggle(400);  
          return false;  
        });   
		
        $('#artystyczna').hide();     
        $('h2#artystyczna-toggle').click(function() {  
          $('#artystyczna').toggle(400);  
          return false;  
        });
		
        $('#narzeczenska').show();    
        $('h2#narzeczenska-toggle').click(function() {  
          $('#narzeczenska').toggle(400);  
          return false;  
        });
		
		 $('#tradycyjny').hide();   
        $('h2#tradycyjny-toggle').click(function() {  
          $('#tradycyjny').toggle(400);  
          return false;  
        });
		
		 $('#fotoksiega').hide();     
        $('h2#fotoksiega-toggle').click(function() {  
          $('#fotoksiega').toggle(400);  
          return false;  
        });
		
		$('#reprodukcja').hide();    
        $('h2#reprodukcja-toggle').click(function() {  
          $('#reprodukcja').toggle(400);  
          return false;  
        });
		
		$('#oryginalna').hide();   
        $('h2#oryginalna-toggle').click(function() {  
          $('#oryginalna').toggle(400);  
          return false;  
        });
		
		$('#dwa').hide();   
        $('h2#dwa-toggle').click(function() {  
          $('#dwa').toggle(400);  
          return false;  
        });
		
		$('#zaproszenia').hide();   
        $('h2#zaproszenia-toggle').click(function() {  
          $('#zaproszenia').toggle(400);  
          return false;  
        });
      });