


$(function(){
	
	$('.box.news .content').hide();
	
	$('.box.news h2').click(function(){
		
		$(this).parent().next('.content').toggle('fast');
		
	});
	
	
});
