$(document).ready(function() {
	$('#comments #trackback').hide();
	$('#comments #comentarios').show();
	$('#comments ul.top a:first').addClass('ativo');
	$('#comments ul.top a').click(function(){
		$('#comments ul.top a').removeClass('ativo');
		$(this).addClass('ativo');
		var abaAtual= $(this).attr('href');
		$('#comments .aba').hide();
		$(abaAtual).show();
		return false;
	});
});
