// ---------------------------------------------------------------------------------
// ------ POPUP
// ---------------------------------------------------------------------------------
$(document).ready( function() {

	$('.popup_show').click( function() {
		$('#popup').fadeIn('fast');
		$('#window').fadeIn('fast');
	});

	$('.popup_close').click( function() {
		$('#popup').fadeOut('fast');
		$('#window').fadeOut('fast');
	});

});
// ---------------------------------------------------------------------------------



// ---------------------------------------------------------------------------------
// ------ SHOW MORE
// ---------------------------------------------------------------------------------
$(document).ready( function() {

	$('.show_more').click( function() {
		$('#about_'+$(this).attr("rel")).slideToggle(1000);
		if($(this).text()=='ukryj') { $(this).html('więcej'); $(this).attr('title','więcej'); }
		else { $(this).html('ukryj'); $(this).attr('title','ukryj'); }
		


	});

});
// ---------------------------------------------------------------------------------




