$(function(){
	$('.news-list').
	find('.news-list-txt').
	hide().
	end().
	find('h2').
	append('<br /><span>mehr...</span>').
	css({
		cursor: 'help'
	}).
	toggle(
		function() {
			$(this).
			find('span').
			hide().
			end().
			next().
			slideDown();
		},
		function() {
			$(this).
			find('span').
			show().
			end().
			next().
			slideUp();
		}
	);
});
