$(document).ready(function() {   
       // hides the slickbox as soon as the DOM is ready   
       // (a little sooner than page load)
	   $('#Ania').hide();   
        $('h1#ania-toggle').click(function() {  
          $('#Ania').toggle(100);
		  $('#Paulina').hide(100);
		  $('#Wojtek').hide(100);
		  $('#Tomek').hide(100);
		  $('#Gabriela').hide(100);
		  $('#courseMagda').hide(100);
		  $('#Slawek').hide(100);
		  $('#Natalia').hide(100);
          return false;  
        });
		
		$('#Paulina').hide();   
        $('h1#paulina-toggle').click(function() {  
          $('#Paulina').toggle(100);
		  $('#Wojtek').hide(100);
		  $('#Tomek').hide(100);
		  $('#Gabriela').hide(100);
		  $('#courseMagda').hide(100);
		  $('#Ania').hide(100);
		  $('#Slawek').hide(100);
		  $('#Natalia').hide(100);
          return false;  
        });
		
		$('#Wojtek').hide();   
        $('h1#ufo-toggle').click(function() {  
          $('#Wojtek').toggle(100);
		  $('#Tomek').hide(100);
		  $('#Gabriela').hide(100);
		  $('#courseMagda').hide(100);
		  $('#Ania').hide(100);
		  $('#Paulina').hide(100);
		  $('#Slawek').hide(100);
		  $('#Natalia').hide(100);
          return false;  
        }); 
        
		$('#Tomek').hide();   
        $('h1#tomek-toggle').click(function() {  
          $('#Tomek').toggle(100);
		  $('#Gabriela').hide(100);
		  $('#courseMagda').hide(100);
		  $('#Ania').hide(100);
		  $('#Paulina').hide(100);
		  $('#Wojtek').hide(100);
		  $('#Slawek').hide(100);
		  $('#Natalia').hide(100);
          return false;  
        });
		
		$('#Gabriela').hide();   
        $('h1#gaba-toggle').click(function() {  
          $('#Gabriela').toggle(100);		  
		  $('#courseMagda').hide(100);
		  $('#Ania').hide(100);
		  $('#Paulina').hide(100);
		  $('#Wojtek').hide(100);
		  $('#Tomek').hide(100);
		  $('#Slawek').hide(100);
		  $('#Natalia').hide(100);
          return false;  
        });
		
		$('#courseMagda').hide();   
        $('h1#magda-toggle').click(function() {  
          $('#courseMagda').toggle(100);
		  $('#Ania').hide(100);
		  $('#Paulina').hide(100);
		  $('#Wojtek').hide(100);
		  $('#Tomek').hide(100);
		  $('#Gabriela').hide(100);
		  $('#Slawek').hide(100);
		  $('#Natalia').hide(100);
          return false;  
        });
		
		$('#Slawek').hide();   
        $('h1#slawek-toggle').click(function() {  
          $('#Slawek').toggle(100);
		  $('#Ania').hide(100);
		  $('#Paulina').hide(100);
		  $('#Wojtek').hide(100);
		  $('#Tomek').hide(100);
		  $('#Gabriela').hide(100);
		  $('#courseMagda').hide(100);
		  $('#Natalia').hide(100);
          return false;  
        });
		
		$('#Natalia').hide();   
        $('h1#natalia-toggle').click(function() {  
          $('#Natalia').toggle(100);
		  $('#Ania').hide(100);
		  $('#Paulina').hide(100);
		  $('#Wojtek').hide(100);
		  $('#Tomek').hide(100);
		  $('#Gabriela').hide(100);
		  $('#courseMagda').hide(100);
		  $('#Slawek').hide(100);
          return false;  
        });
		
		$(document.location.hash).show(100);
		
});
