
	$(document).ready(function() {
	
		
	});
	
	
	function czytajHistorie(no) {
		$('div.zajecia').each(function () {
			if($(this).attr('id') != 'zajecia'+no) {
				$(this).hide();
			}
		});
		
		$('#zajecia'+no).toggle();
	}
	
	function czytajWiadomosc(path, idw) {
		$.ajax({
			url: path+"ajax.php/strona/przeczytajWiadomosc/"+idw,
			cache: false,
			success: function(html){
				$('td.trescWiadomosci').each(function () {
					if($(this).attr('id') != 'trescWiadomosci'+idw) {
						$(this).hide();
					}
				});
				
				$("#trescWiadomosci"+idw).html(html);
				$("#trescWiadomosci"+idw).toggle();
			}
		});
	}
	
