$(function(){
{
	$('a#more-link').click(function()
	{
		$('#more-div').toggle(400);
		
		if($('a#more-link').text() == 'pokaż więcej...' ) 
		{  
			$('a#more-link').html('ukryj');  
		}
		else
		{
			$('a#more-link').html('pokaż więcej...');  
		}
		
		return false;
	});	
}});

