$(document).ready(function(){
	
	function accordion(){
		$('.PerguntaFreq-SubTit li h3').click(function() {
			
			if($(this).next().is('.aberto')){
				return false;
			}else{
			
				$('.PerguntaFreq-SubTit li h3').next().hide('slow').removeAttr('class');
				$(this).next().toggle('slow').attr('class','aberto');
			}
			return false;
		}).next().hide()
	}
	
	function start(){
		accordion();
	}
	
	start();
});
