/**
 * @author BlackLotus
 */
jQuery.noConflict();
jQuery(document).ready(function($){
});

function changeAba(target) {
	jQuery('.aba_interna').hide();
	jQuery("#"+target).fadeIn('fast');
	jQuery(".aba_minha_conta").removeClass("aba_down");
	jQuery("#aba_"+target).addClass('aba_down')
}

function changeSolicitacao() {
  jQuery('.ocorrencia_solicitacao').hide();
  
  if (jQuery('#ocorrencia_tipo_solicitacao').val() == 'Troca') {
    jQuery('#troca').show();
  }
  
  if (jQuery('#ocorrencia_tipo_solicitacao').val() == 'Cancelamento') {
    jQuery("#cancelamento").show();
  }
}

