marcela.duvida = {
	exibe: function(objeto) {
		var dl = $(objeto).parent().parent();
		
		$('dl.duvidas').each(function() {
			$('dt a em', this).html('+');
			$('dd', this).hide();
		});
		
		$('dt a em', dl).html('-');
		$('dd', dl).show();
	}
};