$(document).ready(function(){
   $("#jq_minimizar_planos_assinatura").click(function () {
     $("#jq_assinar_empresa").slideToggle("slow");
     document.getElementById('jq_minimizar_planos_assinatura').style.display='none';
     document.getElementById('jq_maximizar_planos_assinatura').style.display='block';
     document.getElementById('jq_aba_max_min_planos').style.background='url(./img/bg_maximizar.gif) no-repeat';
     document.getElementById('escolha_plano').style.border='none';
   }); 
   
   $("#jq_maximizar_planos_assinatura").click(function () {
     $("#jq_assinar_empresa").slideToggle("slow");
     document.getElementById('jq_minimizar_planos_assinatura').style.display='block';
     document.getElementById('jq_maximizar_planos_assinatura').style.display='none';
     document.getElementById('jq_aba_max_min_planos').style.background='';
     document.getElementById('escolha_plano').style.border='1px solid #ccc';
   }); 
   
   $("#jq_minimizar_valores").click(function () {
     $("#jq_tabela_valores").slideToggle("slow");
     document.getElementById('jq_minimizar_valores').style.display='none';
     document.getElementById('jq_maximizar_valores').style.display='block';
     document.getElementById('jq_aba_max_min_valores').style.background='url(./img/bg_maximizar.gif) no-repeat';
     document.getElementById('tabela_valores').style.border='none';
   }); 
   
   $("#jq_maximizar_valores").click(function () {
     $("#jq_tabela_valores").slideToggle("slow");
     document.getElementById('jq_minimizar_valores').style.display='block';
     document.getElementById('jq_maximizar_valores').style.display='none';
     document.getElementById('jq_aba_max_min_valores').style.background='';
     document.getElementById('tabela_valores').style.border='1px solid #ccc';
   });
});

