$(document).ready(function(){
	$('div.news_content.idle').hide();
	$('h2.news_header').mouseover().css({'cursor':'pointer'});
	
	$('h2.news_header').toggle(
		function(){
			$(this).next('.news_content').slideDown();
		},
		function(){
			$(this).next('.news_content').slideUp()
		}
	);
}
)		
