$(document).ready(function(){
	$('.texto-faq input[type="radio"]').attr('checked',false);
	$('input').keyup(function(){
		$('.resposta').fadeOut();
		$('#resposta').fadeOut();
	})
	$('textarea').keyup(function(){
		$('.resposta').fadeOut();
		$('#resposta').fadeOut();
	})
	$('input').change(function(){
		$('.resposta').fadeOut();
		$('#resposta').fadeOut();
	})
})

$(window).load(function(){
	$('#carregando').fadeOut()
})

function abrir(div){
	if($('#valor-'+div).attr('checked')==false){
		$('#valor-'+div).attr('checked',true);
		$('#'+div).slideDown('slow');
	}else{
		$('#valor-'+div).attr('checked',false);
		$('#'+div).slideUp('slow');
	}
}
