jQuery.noConflict();
jQuery(document).ready(function() {

  // ABAS
  jQuery('ul.abas li:first').addClass('ativo');
  alturaAba = jQuery('ul.abas li.ativo .detalhes').height() + 40;
  jQuery('ul.abas > li').css('float', 'left');
  jQuery('ul.abas li .detalhes').css('position', 'absolute').hide();
  jQuery('ul.abas li:first .detalhes').show();
  jQuery('ul.abas').css('height', alturaAba);
  
  jQuery('ul.abas li h3 a').click(function(){
    jQuery('ul.abas li .detalhes').hide();
    jQuery('ul.abas li').removeClass('ativo');
    jQuery('.detalhes', jQuery(this).parents('li')).show();
    jQuery(this).parents('li').addClass('ativo');
    alturaAba = jQuery('ul.abas li.ativo .detalhes').height() + 40;
    jQuery('ul.abas').css('height', alturaAba);
    
    return false;
  })

});