$(function() {
		
	$('#conteudo h3').bind('click', function(e){
		$('#conteudo div').eq($('#conteudo h3').index(this)).slideToggle('fast'); 
		return false; 
	});
	
	$('#conteudo h3').wrapInner('<a title="Mostrar a resposta"></a>');
	$('#conteudo h3 a').each(function(i) { $(this).attr('href', '#' + $(this).parent().attr('id')); });
		
}); 