$(function() {
	$('.news .content:not(:first)').hide();
	$('.news h3.header').css({ cursor: 'pointer' });
	$('.news h3.header a').each(function() {
		$(this).parent().append($(this).text());
	});
	$('.news h3.header a').remove();
	$('.news h3.header').click(function() {
		if (!$(this).next().is(':visible') && !$(this).next().is(':animated')) {
			$('.news > .content:visible').animate({ height: 'hide'});
			$(this).next().animate({ height: 'show'}, 'slow');
		}
	});
});
