// NOWE OKNO JEŚLI ATRYBUT REL='TARGET'

$(document).ready(function() {

	$("a[rel='target']").click(function() {
	var newWindow = window.open(this.href);
	return false;
	});
	
	$(".about_fr").hide();
	$(".about_usa").hide();
	
	$(".pl").click(function(){
		$('.about_fr, .about_usa').hide();
		$('.about_pl').show();
	});
	
	$(".fr").click(function(){
		$('.about_pl, .about_usa').hide();
		$('.about_fr').show();
	});
	
	$(".usa").click(function(){
		$('.about_pl, .about_fr').hide();
		$('.about_usa').show();
	});
	
	
});

