$(this).ready(function(){    
  $('.aba').css({
    display: 'none',
    marginTop: 0,
    borderTopWidth: 0
    });
    
  $('.aba:first').css('display', 'block');
  $('#nav li:first-child a').addClass('active');  

  $('a', $('#nav')).click(function() {
    
	var ref = $(this).attr('href');
      
	  $(this).parents('#container_abas')
	  .children('.aba:visible').hide();
	  $(ref).show();      
	  $(this).parents('#nav').find('a').removeClass('active');      
	  $(this).addClass('active');
	
	/* CODIGO NAO-GERENCIADO */
	if (ref != "#aba1") {
		$('#desenho').hide();
		$('#curva').hide();
	}
	else {
		$('#desenho').show();
		$('#curva').show();
	}
  });
});

