
function ajax_link(klasa) {	
	
var container = $("#zawartosc"); 
	

$(klasa).click(function(){

	$.ajax({
					type: "GET",
					url: $(this).attr("href"),
					async: false,
					dataType: "html",
					cache: false,
					beforeSend: function() {		container.css({opacity:"0.3"});		},
					complete: function() {	container.css({opacity:"1"}); },
					success: function(msg) {		container.html(msg);			},
        	  		error: function (XMLHttpRequest, textStatus, errorThrown) {        	container.html('<center><b>Wystapil blad podczas wczytywania strony - Spróbuj ponownie!</b></center>');			}
				});	
				

		return false;
		
});




}
