$(document).ready(function() {
	$('div.articlesmall h1.roller').append("<small>Kliknij by rozwinąć...</small>");
	$('div.articlesmall div.article-content').hide();
	$('div.articlesmall h1.roller').click( function() {
			$(this).next().toggle(400);
			$(this).toggleClass('rolled');
			$(this).children('small').toggle(800)
		});
});

