$('.strukturaBoxMenu th a').click( function(){
  var tab = $(this).parent().attr('class').replace(/\s*active\s*/,'');
  var year = tab.replace(/[^\d]/g,'');
  if( $('.lapContent.'+tab).html() == '' ){

    $.post( window.location.href.replace(/#.*/,''), ("year="+year), function( resp ){
      $('.lapContent.'+tab).html( resp ).find('dl').fadeIn();
	      /* adres w formie #rok,postID */
	      if( location.hash && location.hash.split(',')[1]!='' ){
		var position =  $('#'+ location.hash.split(',')[1] ).position() || { top:0, left:0 };
		$(document).scrollTop( position.top - 20 );
	      }
    });
  }
});

if( $('.strukturaBoxContent .lapContent:first').html() =='' ){
  $('.strukturaBoxMenu th a:first').trigger('click');
}