
var NoOffFirstLineMenus=7;			// Numero de Menus principais!!!

// Colorvariables:
// Color variables take HTML predefined color names or "#rrggbb" strings
//For transparency make colors and border color ""

var LowBgColor="#6F8AA0";			// Background color when mouse is not over
var HighBgColor="#9CB0BE";			// Background color when mouse is over
var FontLowColor="white";			// Font color when mouse is not over
var FontHighColor="white";			// Font color when mouse is over
var BorderColor="";			// Border color
var BorderWidthMain=0;			// Border width main items
var BorderWidthSub=0;			// Border width sub items
var BorderBtwnMain=0;			// Borderwidth between elements
var BorderBtwnSub=0;			// Borderwidth between elements sub items
var FontFamily="verdana,arial,technical";	// Font family menu items
var FontSize=11;				// Font size menu items
var FontBold=0;				// Bold menu items 1 or 0
var FontItalic=0;				// Italic menu items 1 or 0
var MenuTextCentered="left";		// Item text position left, center or right
var MenuCentered="left";			// Menu horizontal position can be: left, center, right
var MenuVerticalCentered="top";		// Menu vertical position top, middle,bottom or static
var ChildOverlap=.0;			// horizontal overlap child/ parent
var ChildVerticalOverlap=.0;			// vertical overlap child/ parent
var StartTop=106;				// Menu offset x coordinate. If StartTop is between 0 and 1 StartTop is calculated as part of windowheight
var StartLeft=184;				// Menu offset y coordinate. If StartLeft is between 0 and 1 StartLeft is calculated as part of windowheight
var VerCorrect=0;				// Multiple frames y correction
var HorCorrect=0;				// Multiple frames x correction
var DistFrmFrameBrdr=0;			// Distance between main menu and frame border
var LeftPaddng=2;				// Left padding
var TopPaddng=4;			// Top padding. If set to -1 text is vertically centered
var FirstLineHorizontal=1;			// Number defines to which level the menu must unfold horizontal; 0 is all vertical
var MenuFramesVertical=1;			// Frames in cols or rows 1 or 0
var DissapearDelay=300;			// delay before menu folds in
var UnfoldDelay=10;			// delay before sub unfolds	
var TakeOverBgColor=1;			// Menu frame takes over background color subitem frame
//var MenuUsesFrames=1;
var FirstLineFrame="";			// Frame where first level appears
var SecLineFrame="";			// Frame where sub levels appear
var DocTargetFrame="";			// Frame where target documents appear
var TargetLoc="";				// span id for relative positioning
var MenuWrap=1;				// enables/ disables menu wrap 1 or 0
var RightToLeft=0;				// enables/ disables right to left unfold 1 or 0
var BottomUp=0;				// enables/ disables Bottom up unfold 1 or 0
var UnfoldsOnClick=0;			// Level 1 unfolds onclick/ onmouseover
var BaseHref="";				// BaseHref lets you specify the root directory for relative links. 

// The script precedes your relative links with BaseHref
// For instance: 
// when your BaseHref= "http://www.MyDomain/" and a link in the menu is "subdir/MyFile.htm",
// the script renders to: "http://www.MyDomain/subdir/MyFile.htm"
// Can also be used when you use images in the textfields of the menu
// "MenuX=new Array("<img src=\""+BaseHref+"MyImage\">"
// For testing on your harddisk use syntax like: BaseHref="file:///C|/MyFiles/Homepage/"

//var Arrws=[BaseHref+"tri.gif",5,10,BaseHref+"tridown.gif",10,5,BaseHref+"trileft.gif",5,10,BaseHref+"triup.gif",10,5];
//var Arrws=[BaseHref+"images/tri.gif",5,10,"","","","","","","","",""];
var Arrws=["http://www.mg.trf1.gov.br/images/tri.gif",5,10,"","","","","","","","",""];

// Arrow source, width and height.
// If arrow images are not needed keep source ""

var MenuUsesFrames=0;			
// MenuUsesFrames is only 0 when Main menu, submenus,
// document targets and script are in the same frame.
// In all other cases it must be 1
					
var OverFormElements=1;			// Set this to 0 when the menu does not need to cover form elements.
var RememberStatus=0;			// RememberStatus: When set to 1, menu unfolds to the presetted menu item. 
var BuildOnDemand=0;			// 1/0 When set to 1 the sub menus are build when the parent is moused over
var BgImgLeftOffset=5;			// Only relevant when bg image is used as rollover
var ScaleMenu=0;				// 1/0 When set to 0 Menu scales with browser text size setting
					
// When set to 2 only the relevant main item stays highligthed
// The preset is done by setting a variable in the head section of the target document.
// <head>
//	<script type="text/javascript">var SetMenu="2_2_1";</script>
// </head>
// 2_2_1 represents the menu item Menu2_2_1=new Array(.......

var HooverBold=0;				// 1 or 0
var HooverItalic=0;				// 1 or 0
var HooverUnderLine=0;			// 1 or 0
var HooverTextSize=0;			// 0=off, number is font size difference on hoover
var HooverVariant=0;			// 1 or 0

// Below some pretty useless effects, since only IE6+ supports them
// I provided 3 effects: MenuSlide, MenuShadow and MenuOpacity
// If you don't need MenuSlide just leave in the line var MenuSlide="";
// delete the other MenuSlide statements
// In general leave the MenuSlide you need in and delete the others.
// Above is also valid for MenuShadow and MenuOpacity
// You can also use other effects by specifying another filter for MenuShadow and MenuOpacity.
// You can add more filters by concanating the strings

var MenuSlide="";
var MenuSlide="progid:DXImageTransform.Microsoft.RevealTrans(duration=.3, transition=19)";
var MenuSlide="progid:DXImageTransform.Microsoft.GradientWipe(duration=.3, wipeStyle=1)";

var MenuShadow="";
//var MenuShadow="progid:DXImageTransform.Microsoft.DropShadow(color=#888888, offX=2, offY=2, positive=1)";
//var MenuShadow="progid:DXImageTransform.Microsoft.Shadow(color=#888888, direction=135, strength=3)";

var MenuOpacity="";
//var MenuOpacity="progid:DXImageTransform.Microsoft.Alpha(opacity=85)";

function BeforeStart(){return}
function AfterBuild(){return}
function BeforeFirstOpen(){return}
function AfterCloseAll(){return}

// AQUI COMEÇA A CRIAÇÃO DOS MENUS!!!!
/* Menu tree: Elementos do new Array em ordem:

1. ItemText ou imagem
2. Link
3. background image
4. number of sub elements
5. height
6. width
7. bgcolor
8. bghighcolor
9. fontcolor
10. fonthighcolor
11. bordercolor
12. fontfamily
13. fontsize
14. fontbold
15. fontitalic
16. textalign
17. statustext

Caso seja definida alguma variavel nas configurações do menu abaixo, as configurações globais serão ignoradas.
Fontsize, fontbold and fontitalic são ignoradas quando definidas como -1.
para rollover imagens ItemText ou imagens de background o formato é:  "rollover?"+BaseHref+"Image1.jpg?"+BaseHref+"Image2.jpg" 
*/
//# Verifica se está na intranet ou Internet
//if ((location.host=='intranet')||(location.host=='intranet.mg.trf1.gov.br')) origem='intranet';
//if ((location.host=='www.mg.trf1.gov.br')||(location.host=='200.252.214.10')) origem='internet';

//if ((location.host=='intranet')||(location.host=='intranet.mg.trf1.gov.br')||(location.host=='intranet.trf1.gov.br')) 
//	origem = "intranet";
//else
//	origem = "internet";

if ((location.host=='intranet')||(location.host=='intranet.mg.trf1.gov.br')) origem = "intranet", dominio = "/";
if ((location.host=='extranet')||(location.host=='intranet.trf1.gov.br')) origem = "intranet", dominio = "https://intranet.trf1.gov.br/extranet-jfmg/";
if ((location.host=='internet')||(location.host=='www.mg.trf1.gov.br')||(location.host=='www.jfmg.jus.br')) origem = "internet";

// Menu 1 - Institucional
if(origem=="intranet"){
	Menu1=new Array("Institucional","#LINK","",13,24,94,"","","","","","",-1,1,-1,"center","");
		Menu1_1=new Array("Administração",dominio+"Institucional/Administrativos/Administracao.htm","",0,24,170,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");	
		Menu1_2=new Array("Competência da JF",dominio+"Institucional/Competencia/Competencia.htm","",0,24,170,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu1_3=new Array("Diretoria do Foro",dominio+"Institucional/Diretoria/Diretoria.htm","",0,24,170,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu1_4=new Array("Endereços",dominio+"Institucional/Endereco/Endereco.htm","",0,24,170,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu1_5=new Array("Fotos das Sedes",dominio+"Institucional/Fotos_Sedes/Foto_Sedes.htm","",0,24,170,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu1_6=new Array("História da JFMG",dominio+"Institucional/Historia/Historia.htm","",0,24,170,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu1_7=new Array("Juízes",dominio+"Institucional/Juizes/Juizes.htm","",0,24,170,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu1_8=new Array("Organização","javascript:window.open('https://intranet.trf1.jus.br/Institucional/Organizacao/IndiceOrganizacao.htm')","",0,24,170,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu1_9=new Array("Organograma","#LINK","",2,24,170,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
			Menu1_9_1=new Array("Poder Judiciário","javascript:window.open('"+dominio+"Institucional/Organograma/Organograma_Poder.htm')","",0,24,200,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
			Menu1_9_2=new Array("Seção Judiciária de Minas Gerais","javascript:window.open('http://www.trf1.gov.br/institucional/organizacao/regulamenton/documentos/organograma_sj_minas_gerais_diref.htm')","",0,24,210,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu1_10=new Array("Regulamento de Serviço","javascript:window.open('https://intranet.trf1.gov.br/Institucional/Organizacao/RegulamentoN/Documentos/Sumário_MG_F_LINK.htm')","",0,24,210,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu1_11=new Array("Símbolos",dominio+"Institucional/Simbolos/Bandeira_JF.htm","",0,24,170,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu1_12=new Array("Telefones",dominio+"Institucional/Telefones/Administracao.htm","",0,24,170,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu1_13=new Array("Varas",dominio+"Institucional/Varas/1vara.htm","",0,24,170,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");	 
		
// Menu 2 - Judicial
	Menu2=new Array("Judicial","#LINK","", 17,24,63,"","","","","","",-1,1,-1,"center","");
		Menu2_1=new Array("Acompanhamento Automático (TRF-Push)","javascript:window.open('http://www.trf1.gov.br/Processos/Push/TRF1PushInfo.html')","",0,37,200,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_2=new Array("Acompanhamento Processual","javascript:window.open('http://www.trf1.gov.br/Processos/CProcessualMenuSecoes.htm')","",0,24,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_3=new Array("Arquivo Judicial",dominio+"Intranet/Judicial/Arquivo_judicial/Informacoes.htm","",0,24,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_4=new Array("Cálculo de Custas e Despesas Processuais","javascript:window.open('http://www.trf1.gov.br/Processos/CalculoDeCustas/index.php?secao=3800')","",0,37,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_5=new Array("Fases Processuais",dominio+"Judicial/Fases_Processuais/Fases_Processuais.htm","",0,24,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_6=new Array("Legislação",dominio+"intranet/Judicial/Legislacao.htm","",0,24,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_7=new Array("Inspeção",dominio+"Judicial/Inspecao/Edital_Inspecao_2010.pdf","",0,24,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_8=new Array("Inteiro Teor de Acórdãos, Despachos e Decisões","javascript:window.open('http://arquivo.trf1.gov.br/')","",0,37,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_9=new Array("Juizado Especial Federal - JEF",dominio+"jef/informacoes/jef.htm","",0,24,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_10=new Array("Jurisdição",dominio+"Judicial/Jurisdicao/Jurisdicao.asp","",0,24,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_11=new Array("Jurisprudência","javascript:window.open('http://www.trf1.gov.br/Processos/Jurisprudenciaoracle/default.htm')","",0,27,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_12=new Array("e-Proc - Peticionamento Eletrônico","javascript:window.open('http://www.trf1.gov.br/Processos/ePeticao/')","",0,30,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_13=new Array("e-Proc - Cadastro de Entidade Pública","javascript:window.open('https://intranet.trf1.gov.br/setorial/jef/admeproc/')","",0,30,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_14=new Array("e-Proc - Validação Presencial de Cadastro","javascript:window.open('http://www.trf1.gov.br/Processos/ePeticao/GerenciaEproc/')","",0,32,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_15=new Array("Prazos Processuais",dominio+"Judicial/Prazos.htm","",0,30,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_16=new Array("Tabelas / Custas",dominio+"Judicial/Custas/Lei_Custas.htm","",0,24,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_17=new Array("Turmas Recursais",dominio+"Jef/turma_recursal/informacoes.htm","",0,24,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");

// Menu 3 - Publicações
	Menu3=new Array("Publicações","#LINK","",12,24,90,"","","","","","",-1,1,-1,"center","");
		Menu3_1=new Array("Alerta Sebib",dominio+"intranet/publicacao/Alerta.asp","",0,24,175,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu3_2=new Array("Boletim de Serviço - MG",dominio+"intranet/publicacao/Boletim_Servico.htm","",0,24,166,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu3_3=new Array("Boletim de Serviço - TRF","javascript:window.open('https://intranet.trf1.jus.br/Consulta/BoletimServico/')","",0,24,166,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");	
//		Menu3_4=new Array("Diário da Justiça",dominio+"intranet/publicacao/diario_justica/diario_justica.asp","",0,24,175,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu3_4=new Array("Diário Eletrônico - e-DJF1","#LINK","",2,24,166,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
			Menu3_4_1=new Array("Enviar Matérias","javascript:window.open('http://incom.in.gov.br/asps/login.asp')","",0,24,150,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
			Menu3_4_2=new Array("Consultar Publicações","javascript:window.open('http://www.trf1.gov.br/Consulta/DiarioEletronico/DiarioEletronico.php?Entidade=1000109000000')","",0,24,150,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu3_5=new Array("Diários Digitais da União","javascript:window.open('https://intranet.trf1.gov.br/Consulta/PubOficial/PubOficial.php?Entidade=1051200000000&DocOrgOrigem=14')","",0,24,166,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu3_6=new Array("Imprensa Oficial",dominio+"intranet/Publicacao/varas.htm","",0,24,166,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu3_7=new Array("Informativos","#LINK","",2,24,166,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
			Menu3_7_1=new Array("Clipping","javascript:window.open('http://trf1.empauta.com/trf1/index.php')","",0,24,110,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");	
			Menu3_7_2=new Array("Destaque do dia","javascript:window.open('https://intranet.trf1.gov.br/Consulta/PubOficial/DestaqueDia.htm')","",0,24,110,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");	
		Menu3_8=new Array("Justiça em Revista",dominio+"Publicacao/ASCOM/revista.asp","",0,24,166,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu3_9=new Array("Leilões",dominio+"Publicacao/Leilao/Leilao.asp","",0,24,166,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu3_10=new Array("Licitações",dominio+"Publicacao/Licitacao/Licitacao.asp","",0,24,166,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu3_11=new Array("Manuais",dominio+"intranet/Publicacao/Manuais/Manuais.htm","",0,24,166,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu3_12=new Array("Provimento da Corregedoria","javascript:window.open('http://www.trf1.gov.br/institucional/Corregedoriageral/Arquivos/ProvimentoGeralConsolidado.pdf')","",0,24,166,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");	
		
// Menu 4 - Formulários
	Menu4=new Array("Formulários","#LINK","",9,28,90,"","","","","","",-1,1,-1,"center","");
		Menu4_1=new Array("DARF","javascript:window.open('http://www.trf1.gov.br/Processos/Darf/default.htm')","",0,24,90,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu4_2=new Array("Estágio",dominio+"intranet/Formularios/Estagio/Estagio.htm","",0,24,90,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu4_3=new Array("GEFI","javascript:window.open('https://intranet.trf1.gov.br/servicos/fei/gefi_menu.php\')","",0,24,90,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu4_4=new Array("Modelo Plantão",dominio+"intranet/Formularios/Diref/Modelo_Portaria_Juiz_Plantonista.doc","",0,24,90,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu4_5=new Array("NUASG",dominio+"intranet/Formularios/Nuasg/Nuasg.htm","",0,24,90,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu4_6=new Array("NUCAF",dominio+"intranet/Formularios/Nucaf/Nucaf.htm","",0,24,90,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu4_7=new Array("NUCRE",dominio+"Formularios/Nucre/Nucre.htm","",0,24,90,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu4_8=new Array("NUTEC",dominio+"intranet/Formularios/Numoi/Numoi.htm","",0,24,90,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu4_9=new Array("Pro-Social",dominio+"setoriais/ProSocial/Formularios.htm","",0,24,90,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");

// Menu 5 - Administrativos
	Menu5=new Array("Administrativos","#LINK","",9,24,115,"","","","","","",-1,1,-1,"center","");
		Menu5_1=new Array("Concursos","#LINK","",2,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
			Menu5_1_1=new Array("Estágio-BH","javascript:window.open('"+dominio+"Noticias/Processo_Seletivo/Edital_BH.htm')","",0,24,80,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
			Menu5_1_2=new Array("TRF1","javascript:window.open('http://www.trf1.gov.br/consulta/concurso/trf1_concurso.htm')","",0,24,50,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");		
		Menu5_2=new Array("Consignação-Bancos",dominio+"intranet/Administrativo/consignacao_bancos.htm","",0,24,150,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu5_3=new Array("Contracheque","javascript:window.open('http://www.trf1.gov.br/Consulta/Contracheque/Contracheque.php?SiglaSecao=JFMG')","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu5_4=new Array("Contratos",dominio+"Administrativo/Contratos/Contratos.pdf","",0,24,115,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu5_5=new Array("Dirf","javascript:window.open('http://intranet.trf1.gov.br/servicos/dirf/dirf.php?acao=9')","",0,24,115,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");		
		Menu5_6=new Array("E-mail","javascript:window.open('http://www.mg.trf1.gov.br/email/webmail.htm')","",0,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");	
		Menu5_7=new Array("Espaço de Arte e Cultura",dominio+"Administrativo/Espaco_Cultural/Espaco_Cultural.htm","",0,37,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu5_8=new Array("Expediente",dominio+"Administrativo/Expediente/Expediente.htm","",0,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu5_9=new Array("Folha de Pagamento",dominio+"intranet/Administrativo/Fechamento_Folha.htm","",0,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");

// Menu 6 - Setoriais
	Menu6=new Array("Setoriais","#LINK","",5,24,73,"","","","","","",-1,1,-1,"center","");
		Menu6_1=new Array("Biblioteca",dominio+"setoriais/Biblioteca/Apresentacao.htm","",0,24,140,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		//Menu6_1=new Array("Cartilha do Servidor",dominio+"Setoriais/Cartilha/Index_Cartilha.htm","",0,24,140,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu6_2=new Array("Comunicação Social","#LINK","",1,24,140,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
			Menu6_2_1=new Array("Clipping","javascript:window.open('http://trf1.empauta.com/trf1/index.php')","",0,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");	
			//Menu6_2_2=new Array("Dicas de Português",dominio+"intranet/setoriais/Comunicacao/Dicas/Dicas.asp","",0,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu6_3=new Array("Contadoria",dominio+"intranet/setoriais/Contadoria/Juizado.asp","",0,24,140,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		//Menu6_4=new Array("Perguntas e Respostas",dominio+"intranet/setoriais/Perguntas/Perguntas.htm","",0,24,140,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");		
		Menu6_4=new Array("PGQVT",dominio+"setoriais/PGQVT/oqueeh.htm","",0,24,140,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu6_5=new Array("Pro-Social",dominio+"setoriais/ProSocial/Avisos.asp","",0,24,140,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");

// Menu 7 - Serviços
	Menu7=new Array("Serviços","#LINK","",12,24,70,"","","","","","",-1,1,-1,"center","");
		Menu7_1=new Array("Biblioteca CJF","javascript:window.open('http://daleth2.cjf.jus.br/netahtml/bibl/pesquisa_facil.htm')","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu7_2=new Array("Busca de CEP",dominio+"intranet/Servicos/Busca_CEP.htm","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu7_3=new Array("Classificados",dominio+"intranet/Servicos/Classificados/Classificados.asp","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu7_4=new Array("Dicionário Aurélio","javascript:window.open('http://aurelio.mg.trf1.gov.br/aurelio')","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu7_5=new Array("Dicionários Jurídico/Latim",dominio+"Servicos/Dicionarios/Dicionarios.htm","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu7_6=new Array("e-Siam","javascript:window.open('http://prd.trf1.gov.br/siam/')","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu7_7=new Array("JF Cidadã",dominio+"Servicos/JF_Cidada/Link_Uteis.htm","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu7_8=new Array("Links Jurídicos",dominio+"Servicos/Links.htm","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu7_9=new Array("Plantões","javascript:window.open('http://www.mg.trf1.gov.br/Servicos/Plantao/Plantao_BH.asp?Cidade=Belo%20Horizonte')","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
//		Menu7_9=new Array("Plantões",dominio+"Servicos/Plantao/Plantao_BH.asp?Cidade=Belo Horizonte","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu7_10=new Array("Protocolo","#LINK","",2,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
			Menu7_10_1=new Array("Protocolo Descentralizado","javascript:window.open('http://www.trf1.gov.br/info/PD.htm')","",0,24,152,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");	
			Menu7_10_2=new Array("Protocolo Postal","javascript:window.open('http://www.trf1.gov.br/Servicos/Protocolo/ProtocoloPostal/index.htm')","",0,24,152,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu7_11=new Array("S.P.E - SECAM",dominio+"Servicos/SPE.htm","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu7_12=new Array("Tabela de Remuneração","javascript:window.open('"+dominio+"intranet/Servicos/tabela_remuneracao.pdf\')","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
	}
	else
	{
// Menu 1 - Institucional		
	Menu1=new Array("Institucional","#LINK","",10,24,94,"","","","","","",-1,1,-1,"center","");
		Menu1_1=new Array("Administração","/Institucional/Administrativos/Administracao.htm","",0,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");	
		Menu1_2=new Array("Competência da JF","/Institucional/Competencia/Competencia.htm","",0,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu1_3=new Array("Diretoria do Foro","/Institucional/Diretoria/Diretoria.htm","",0,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu1_4=new Array("Endereços","/Institucional/Endereco/Endereco.htm","",0,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu1_5=new Array("Fotos das Sedes","/Institucional/Fotos_Sedes/Foto_Sedes.htm","",0,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu1_6=new Array("História da JFMG","/Institucional/Historia/Historia.htm","",0,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu1_7=new Array("Juízes","/Institucional/Juizes/Juizes.htm","",0,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu1_8=new Array("Organograma","#LINK","",2,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
			Menu1_8_1=new Array("Poder Judiciário","javascript:window.open('/Institucional/Organograma/Organograma_Poder.htm')","",0,24,200,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
			Menu1_8_2=new Array("Seção Judiciária de Minas Gerais","javascript:window.open('http://www.trf1.gov.br/institucional/organizacao/regulamenton/documentos/organograma_sj_minas_gerais_diref.htm')","",0,24,210,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu1_9=new Array("Telefones","/Institucional/Telefones/Administracao.htm","",0,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu1_10=new Array("Varas","/Institucional/Varas/1vara.htm","",0,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");	

// Menu 2 - Judicial
	Menu2=new Array("Judicial","#LINK","", 14,24,63,"","","","","","",-1,1,-1,"center","");
		Menu2_1=new Array("Acompanhamento Automático (TRF-Push)","javascript:window.open('http://www.trf1.gov.br/Processos/Push/TRF1PushInfo.html')","",0,37,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_2=new Array("Acompanhamento Processual","javascript:window.open('http://www.trf1.gov.br/Processos/CProcessualMenuSecoes.htm')","",0,24,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_3=new Array("Cálculo de Custas e Despesas Processuais","javascript:window.open('http://www.trf1.gov.br/Processos/CalculoDeCustas/index.php?secao=3800')","",0,37,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");		
		Menu2_4=new Array("e-Cint - Citação e Intimação Eletrônica","javascript:window.open('http://www.trf1.gov.br/autointimacao/')","",0,37,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");		
		Menu2_5=new Array("e-Proc - Peticionamento Eletrônico","javascript:window.open('http://www.trf1.gov.br/Processos/ePeticao/')","",0,37,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_6=new Array("Fases Processuais","/Judicial/Fases_Processuais/Fases_Processuais.htm","",0,24,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_7=new Array("Inspeção","/Judicial/Inspecao/Edital_Inspecao_2010.pdf","",0,24,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_8=new Array("Inteiro Teor de Acórdãos, Despachos e Decisões","javascript:window.open('http://arquivo.trf1.gov.br/')","",0,37,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_9=new Array("Juizado Especial Federal - JEF","/jef/informacoes/jef.htm","",0,24,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_10=new Array("Jurisdição","/Judicial/Jurisdicao/Jurisdicao.asp","",0,24,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_11=new Array("Jurisprudência","javascript:window.open('http://www.trf1.gov.br/Processos/Jurisprudenciaoracle/default.htm')","",0,24,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_12=new Array("Prazos Processuais","/Judicial/Prazos.htm","",0,24,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_13=new Array("Tabelas / Custas","/Judicial/Custas/Lei_Custas.htm","",0,24,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu2_14=new Array("Turmas Recursais","/Jef/turma_recursal/informacoes.htm","",0,24,190,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");

// Menu 3 - Publicações
		Menu3=new Array("Publicações","#LINK","",6,24,90,"","","","","","",-1,1,-1,"center","");
		Menu3_1=new Array("Diário Eletrônico - e-DJF1","javascript:window.open('http://www.trf1.gov.br/Consulta/DiarioEletronico/DiarioEletronico.php?Entidade=1000109000000')","",0,24,165,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu3_2=new Array("Desfazimento de Material","/Publicacao/Desfazimento/desfazimento.htm","",0,24,165,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu3_3=new Array("Informativos","#LINK","",2,24,165,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
			Menu3_3_1=new Array("Clipping","javascript:window.open('http://trf1.empauta.com/trf1/index.php')","",0,24,110,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");	
			Menu3_3_2=new Array("Destaque do dia","javascript:window.open('https://intranet.trf1.gov.br/Consulta/PubOficial/DestaqueDia.htm')","",0,24,110,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");	
		Menu3_4=new Array("Justiça em Revista","/Publicacao/ASCOM/revista.asp","",0,24,165,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu3_5=new Array("Leilões","/Publicacao/Leilao/Leilao.asp","",0,24,165,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu3_6=new Array("Licitações","/Publicacao/Licitacao/Licitacao.asp","",0,24,165,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");

// Menu 4 - Formulários
	Menu4=new Array("Formulários","#LINK","",3,24,90,"","","","","","",-1,1,-1,"center","");
		Menu4_1=new Array("DARF","javascript:window.open('http://www.trf1.gov.br/Processos/Darf/default.htm')","",0,24,90,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu4_2=new Array("NUCRE","/Formularios/Nucre/Nucre.htm","",0,24,90,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu4_3=new Array("Pro-Social","/setoriais/ProSocial/Formularios.htm","",0,24,90,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");

// Menu 5 - Administrativos
	Menu5=new Array("Administrativos","#LINK","",8,24,115,"","","","","","",-1,1,-1,"center","");
		Menu5_1=new Array("Concursos","#LINK","",2,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
			Menu5_1_1=new Array("Estágio - BH","javascript:window.open('/Noticias/Processo_Seletivo/Edital_BH.htm')","",0,24,80,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
			Menu5_1_2=new Array("TRF1","javascript:window.open('http://www.trf1.gov.br/consulta/concurso/trf1_concurso.htm')","",0,24,50,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");		
		Menu5_2=new Array("Contas Públicas","javascript:window.open('http://www.trf1.gov.br/consulta/contaspublicas/trf1consultacontaspublicas.php')","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu5_3=new Array("Contracheque","javascript:window.open('http://www.trf1.gov.br/Consulta/Contracheque/Contracheque.php?SiglaSecao=JFMG')","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu5_4=new Array("Contratos","/Administrativo/Contratos/Contratos.pdf","",0,24,115,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu5_5=new Array("Dirf","javascript:window.open('http://intranet.trf1.gov.br/servicos/dirf/dirf.php?acao=9')","",0,24,115,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");	
		Menu5_6=new Array("E-mail","javascript:window.open('http://www.mg.trf1.gov.br/email/webmail.htm')","",0,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"",""); //https://owa.trf1.gov.br/exchange
		Menu5_7=new Array("Espaço de Arte e Cultura","/Administrativo/Espaco_Cultural/Espaco_Cultural.htm","",0,37,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu5_8=new Array("Expediente","/Administrativo/Expediente/Expediente.htm","",0,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");

// Menu 6 - Setoriais
	Menu6=new Array("Setoriais","#LINK","",2,24,73,"","","","","","",-1,1,-1,"center","");
		Menu6_1=new Array("Biblioteca","/Setoriais/Biblioteca/Apresentacao.htm","",0,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		//Menu6_1=new Array("Cartilha do Servidor","/Setoriais/Cartilha/Index_Cartilha.htm","",0,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu6_2=new Array("Pro-Social","/setoriais/ProSocial/Avisos.asp","",0,24,125,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");

// Menu 7 - Serviços
	Menu7=new Array("Serviços","#LINK","",6,24,70,"","","","","","",-1,1,-1,"center","");
		Menu7_1=new Array("Biblioteca CJF","javascript:window.open('http://daleth2.cjf.jus.br/netahtml/bibl/pesquisa_facil.htm')","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu7_2=new Array("Dicionários","/Servicos/Dicionarios/Dicionarios.htm","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu7_3=new Array("JF Cidadã","/Servicos/JF_Cidada/Link_Uteis.htm","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu7_4=new Array("Links Jurídicos","/Servicos/Links.htm","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
		Menu7_5=new Array("Plantões","javascript:window.open('http://www.mg.trf1.gov.br/Servicos/Plantao/Plantao_BH.asp?Cidade=Belo%20Horizonte')","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
//		Menu7_5=new Array("Plantões","/Servicos/Plantao/Plantao_BH.asp?Cidade=Belo Horizonte","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
	//	Menu7_6=new Array("Protocolo","/Servicos/Protocolo.htm","",0,24,158,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
	
//}
		Menu7_6=new Array("Protocolo","#LINK","",2,24,80,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
			Menu7_6_1=new Array("Protocolo Descentralizado","javascript:window.open('http://www.trf1.gov.br/info/PD.htm')","",0,24,152,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");	
			Menu7_6_2=new Array("Protocolo Postal","javascript:window.open('http://www.trf1.gov.br/Servicos/Protocolo/ProtocoloPostal/index.htm')","",0,24,152,"#6F8AA0","#9CB0BE","white","white","","",-1,-1,-1,"","");
}