$(function(){
	var firstAccActived;
	$('.accordion-descricao-financiamento h5').each(function(index, element){
		if($(element).hasClass("ativado")) firstAccActived = index;
	});
	$('.accordion-descricao-financiamento').accordion({
		header:"h5",
		autoHeight:false,
		active:!isNaN(firstAccActived) ? firstAccActived : false,
		collapsible:true
	});
});

