$(function(){
	/* @noticias: lista de noticias */
	$('.switch').next().not(':first').addClass('hidden');
	$('.switch').next().not('.hidden').prev().find('h2').addClass('active');
	
	$('.switch').click(function(){
		if ( $(this).next().is('.hidden') ) {
			$(this).next().removeClass('hidden');
			$(this).find('h2').addClass('active');
		} else {
			$(this).next().addClass('hidden');
			$(this).find('h2').removeClass('active');
		};
	})
});