 /***********************************************
*	(c) Ger Versluis 2000 version 9.10 14 October 2002        *
*	You may use this script on non commercial sites.	          *
*	For info write to menus@burmees.nl		          *
*	You may remove all comments for faster loading	          *		
************************************************/
	var NoOffFirstLineMenus=6;			// Number of main menu  items
						// Colorvariables:
						// Color variables take HTML predefined color names or "#rrggbb" strings
						//For transparency make colors and border color ""
	var LowBgColor="#ab0303";			// Background color when mouse is not over
	var HighBgColor="#d30202";			// Background color when mouse is over
	var FontLowColor="#ffffff";			// Font color when mouse is not over
	var FontHighColor="#FFFFFF";			// Font color when mouse is over
	var BorderColor="#FFFFFF";			// Border color
	var BorderWidthMain=2;			// Border width main items
	var BorderWidthSub=2;			// Border width sub items
 	var BorderBtwnMain=2;			// Border between elements main items 1 or 0
	var BorderBtwnSub=2;			// Border between elements sub items 1 or 0
	var FontFamily="verdana,arial";	// Font family menu items
	var FontSize=8;				// Font size menu items
	var FontBold=0;				// Bold menu items 1 or 0
	var FontItalic=0;				// Italic menu items 1 or 0
	var MenuTextCentered="center";		// Item text position left, center or right
	var MenuCentered="left";			// Menu horizontal position can be: left, center, right, justify,
						//  leftjustify, centerjustify or rightjustify. PartOfWindow determines part of window to use
	var MenuVerticalCentered="top";		// Menu vertical position top, middle,bottom or static
	var ChildOverlap=.01;			// horizontal overlap child/ parent
	var ChildVerticalOverlap=.2;			// vertical overlap child/ parent
	var StartTop=0;				// Menu offset x coordinate. If StartTop is between 0 and 1 StartTop is calculated as part of windowheight
	var StartLeft=-6;				// Menu offset y coordinate. If StartLeft is between 0 and 1 StartLeft is calculated as part of windowheight
	var VerCorrect=-2;				// Multiple frames y correction
	var HorCorrect=0;				// Multiple frames x correction
	var LeftPaddng=0;				// Left padding
	var TopPaddng=3;				// Top padding
	var FirstLineHorizontal=1;			// First level items layout horizontal 1 or 0
	var MenuFramesVertical=0;			// Frames in cols or rows 1 or 0
	var DissapearDelay=1000;			// delay before menu folds in
	var UnfoldDelay=100;			// delay before sub unfolds	
	var TakeOverBgColor=1;			// Menu frame takes over background color subitem frame
	var FirstLineFrame="FrameN";			// Frame where first level appears
	var SecLineFrame="FrameC";			// Frame where sub levels appear
	var DocTargetFrame="FrameC";			// Frame where target documents appear
	var TargetLoc="menu";				// 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/Myem_branco.html",
						// the script renders to: "http://www.MyDomain/subdir/Myem_branco.html"
						// 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];

						// Arrow source, width and height.
						// If arrow images are not needed keep source ""

	var ShowArrow=1;				// Uses arrow gifs when 1
	var KeepHilite=1;				// Keep selected path highligthed
	var Arrws=['arrowdown_black.gif',6,9,'',6,9,'arrowdown_black.gif',6,9];	// Arrow source, width and height [ESQUERDA, BAIXO

	var MenuUsesFrames=1;			// 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 RememberStatus=0;			// RememberStatus: When set to 1, menu unfolds to the presetted menu item. 
						// 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 PartOfWindow=.8;			// PartOfWindow: When MenuCentered is justify, sets part of window width to stretch to

						// 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 BuildOnDemand=0;			// 1/0 When set to 1 the sub menus are build when the parent is moused over
	var MenuSlide="";
	var MenuSlide="progid:DXImageTransform.Microsoft.RevealTrans(duration=.5, transition=19)";
	var MenuSlide="progid:DXImageTransform.Microsoft.GradientWipe(duration=.5, wipeStyle=1)";
	var MenuShadow="";
	var MenuShadow="progid:DXImageTransform.Microsoft.DropShadow(color=#000000, offX=2, offY=2, positive=1)";
	var MenuShadow="progid:DXImageTransform.Microsoft.Shadow(color=#ffffff, direction=190, strength=1)";

	var MenuOpacity="";
	var MenuOpacity="progid:DXImageTransform.Microsoft.Alpha(opacity=100)";

	function BeforeStart(){return}
	function AfterBuild(){return}
	function BeforeFirstOpen(){return}
	function AfterCloseAll(){return}

// Menu tree:
// MenuX=new Array("ItemText","Link","background image",number of sub elements,height,width,"bgcolor","bghighcolor",
//	"fontcolor","fonthighcolor","bordercolor","fontfamily",fontsize,fontbold,fontitalic,"textalign","statustext");
// Color and font variables defined in the menu tree take precedence over the global variables
// Fontsize, fontbold and fontitalic are ignored when set to -1.
// For rollover images ItemText format is:  "rollover?"+BaseHref+"Image1.jpg?"+BaseHref+"Image2.jpg" 
Menu1=new Array("Mantenedora","","",12,20,100,"","","","","","",-1,-1,-1,"center","..:: Mantenedora");
	Menu1_1=new  Array("IPM","javascript:window.open('http://www.mackenzie.br/ipm.html')","",             0,20,155,"","","","","","",-1,0,-1,"","");
    Menu1_2=new  Array("Visão","javascript:window.open('http://www.mackenzie.br/visao.html')","",         "","","","","","","","","",-1,0,-1,"","");
    Menu1_3=new  Array("Missão","javascript:window.open('http://www.mackenzie.br/missao.html')","",           "","","","","","","","","",-1,0,-1,"","");
    Menu1_4=new  Array("Valores e Princípios","javascript:window.open('http://www.mackenzie.br/principios.html')","",                "","","","","","","","","",-1,0,-1,"","");
    Menu1_5=new  Array("Conselhos","javascript:window.open('http://www.mackenzie.br/conselhos.html')","",                "","","","","","","","","",-1,0,-1,"","");
    Menu1_6=new  Array("Diretoria Executiva","javascript:window.open('http://www.mackenzie.br/administracao.html')","",                "","","","","","","","","",-1,0,-1,"","");	
	Menu1_7=new  Array("Capelania Institucional","javascript:window.open('http://www.mackenzie.br/capelania_institucional.html')","",             "","","","","","","","","",-1,0,-1,"","");
    Menu1_8=new  Array("MackPesquisa","javascript:window.open('http://www.mackenzie.br/mackpesquisa.html')","",             "","","","","","","","","",-1,0,-1,"","");
	Menu1_9=new  Array("Andrew Jumper","javascript:window.open('http://www.mackenzie.br/teologia.html')","",             0,20,155,"","","","","","",-1,0,-1,"","");
	Menu1_10=new  Array("Faculdade Moraes Júnior","javascript:window.open('http://www.mackenzie-rio.edu.br')","",             0,20,155,"","","","","","",-1,0,-1,"","");
	Menu1_11=new  Array("Colônia de Férias","javascript:window.open('http://www.mackenzie.br/colonia.html')","",             0,20,155,"","","","","","",-1,0,-1,"","");
	Menu1_12=new  Array("Divisão de Tecnologia","javascript:window.open('http://www.mackenzie.br/dti.html')","",             0,20,155,"","","","","","",-1,0,-1,"","");

	
	
Menu2=new Array("Universidade","","",14,20,100,"","","","","","",-1,-1,-1,"center","..:: Universidade");
    Menu2_1=new  Array("Chancelaria","javascript:window.open('http://www.mackenzie.br/chancelaria.html')","",           0,20,220,"","","","","","",-1,0,-1,"","");
    Menu2_2=new  Array("Reitoria","javascript:window.open('http://www.mackenzie.br/reitoria.html')","",0,"","","","","","","","",-1,0,-1,"","");
	Menu2_3=new  Array("Decanato Acadêmico","javascript:window.open('http://www.mackenzie.br/academico.html')","",          "","","","","","","","","",-1,0,-1,"","");
	Menu2_4=new  Array("Decanato de Extensão","javascript:window.open('http://www.mackenzie.br/extensao.html')","",           1,20,410,"","","","","","",-1,0,-1,"","");
		Menu2_4_1=new Array("U.A.T.U.","javascript:window.open('http://www.mackenzie.br/uatu.html')","",   0,20,150,"","","","","","",-1,0,-1,"","");
	Menu2_5=new  Array("Decanato de Pesquisa e                  Pós-Graduação","javascript:window.open('http://www.mackenzie.br/pesquisa_pos.html')","",           0,32,410,"","","","","","",-1,0,-1,"","");
	Menu2_6=new  Array("ASSP - Assessoria de Suporte à Pós-Graduação Stricto Sensu e Elaboração de Projetos ","javascript:window.open('http://www.mackenzie.br/fomentos.html')","",           0,55,550,"","","","","","",-1,0,-1,"","");
	Menu2_7=new  Array("COI - Coodenadoria de Cooperação Interinstitucional e Internacional","javascript:window.open('http://www.mackenzie.br/coi.html')","",           0,32,410,"","","","","","",-1,0,-1,"","");
	Menu2_8=new  Array("CLEM - Coordenadoria de Línguas Estrangeiras Mackenzie","javascript:window.open('http://www.mackenzie.br/clem.html')","",           0,32,410,"","","","","","",-1,0,-1,"","");	
	Menu2_9=new  Array("Bibliotecas","javascript:window.open('http://www.mackenzie.br/bibliotecas.html')","",           0,20,410,"","","","","","",-1,0,-1,"","");	
	Menu2_10=new  Array("DAC - Divisão de Arte e Cultura","javascript:window.open('http://www.mackenzie.br/dac.html')","",           0,20,410,"","","","","","",-1,0,-1,"","");	
	//Menu2_10=new  Array("CRT - Centro de Rádio e Televisão","","",          "","","","","","","","","",-1,0,-1,"","");
	Menu2_11=new  Array("CRT - Centro de Rádio e Televisão","javascript:window.open('http://www.mackenzie.br/crt.html')","",           0,20,410,"","","","","","",-1,0,-1,"","");	
	Menu2_12=new  Array("NIT - Núcleo de Inovação e Tecnologia","javascript:window.open('http://www.mackenzie.br/nit.html')","",          "","","","","","","","","",-1,0,-1,"","");

	Menu2_13=new  Array("Editora Mackenzie","javascript:window.open('http://www.mackenzie.br/editora.html')","",          "","","","","","","","","",-1,0,-1,"","");	
	Menu2_14=new  Array("Capelania Universitária","javascript:window.open('http://www.mackenzie.br/capelania.html')","",          "","","","","","","","","",-1,0,-1,"","");	
	Menu2_15=new  Array("Ouvidoria","javascript:window.open('http://www.mackenzie.br/845.html')","",          "","","","","","","","","",-1,0,-1,"","");
	//Menu2_14=new  Array("Organogramas","javascript:window.open('#', '')","",          "","","","","","","","","",-1,0,-1,"","");



Menu3=new Array("Vestibular","javascript:window.open('http://www.mackenzie.com.br/vestibular.html')","",0,20,90,"","","","","","",-1,-1,-1,"center","..:: Vestibular");
//Menu3=new Array("Vestibular","javascript:window.open('http://www.mackenzie.br/fileadmin/Decanato_Academico/Vestibular/2012_1o/hotsite/1-home.html')","",0,20,90,"","","","","","",-1,-1,-1,"center","..:: Vestibular");

Menu4=new Array("Avaliação","javascript:window.open('http://www.mackenzie.br/cpa.html')","",0,20,80,"","","","","","",-1,-1,-1,"center","..:: Vestibular");

Menu5=new Array("Graduação","","",4,20,85,"","","","","","",-1,-1,-1,"center","..:: Graduação");
	Menu5_1=new Array("Cursos Oferecidos","javascript:window.open('http://www.mackenzie.br/portal/CursosOferecidos.php')","",   0,20,145,"","","","","","",-1,0,-1,"","");   
	Menu5_2=new Array("Higienópolis","","",   9,20,85,"","","","","","",-1,0,-1,"","");           
		Menu5_2_1=new Array("Centro de Ciências Biológicas e da Saúde - CCBS","","",   6,20,290,"","","","","","",-1,0,-1,"","");           
			Menu5_2_1_1=new Array("Home","javascript:window.open('http://www.mackenzie.br/ccbs.html')","",   0,20,150,"","","","","","",-1,0,-1,"","");		
			Menu5_2_1_2=new Array("Ciências Biológicas","javascript:window.open('http://www.mackenzie.br/biologia.html')","",   0,20,100,"","","","","","",-1,0,-1,"","");
            Menu5_2_1_3=new Array("Farmácia","javascript:window.open('http://www.mackenzie.br/farmacia.html')","",   0,"","","","","","","","",-1,0,-1,"","");			
            Menu5_2_1_4=new Array("Nutrição","javascript:window.open('http://www.mackenzie.br/nutricao.html')","",   0,"","","","","","","","",-1,0,-1,"","");						
	        Menu5_2_1_5=new Array("Psicologia","javascript:window.open('http://www.mackenzie.br/psicologia.html')","",   0,20,200,"","","","","","",-1,0,-1,"","");
			Menu5_2_1_6=new Array("QualiMack","javascript:window.open('http://www.mackenzie.br/qualimack.html')","",   0,20,200,"","","","","","",-1,0,-1,"","");

		Menu5_2_2=new Array("Centro de Ciências e Humanidades - CCH","","",   6,20,250,"","","","","","",-1,0,-1,"","");           
            Menu5_2_2_1=new Array("Home","javascript:window.open('http://www.mackenzie.br/cch.html')","",   0,20,120,"","","","","","",-1,0,-1,"","");					
            Menu5_2_2_2=new Array("Matemática","javascript:window.open('http://www.mackenzie.br/matematica.html')","",   0,20,120,"","","","","","",-1,0,-1,"","");			
            Menu5_2_2_3=new Array("Física","javascript:window.open('http://www.mackenzie.br/fisica.html')","",   0,20,200,"","","","","","",-1,0,-1,"","");						
			Menu5_2_2_4=new Array("Química","javascript:window.open('http://www.mackenzie.br/quimica.html')","",   0,20,150,"","","","","","",-1,0,-1,"","");			
            Menu5_2_2_5=new Array("Filosofia","javascript:window.open('http://www.mackenzie.br/filosofia.html')","",   0,20,200,"","","","","","",-1,0,-1,"","");			
            Menu5_2_2_6=new Array("Pedagogia","javascript:window.open('http://www.mackenzie.br/pedagogia.html')","",   0,20,200,"","","","","","",-1,0,-1,"","");						
						

		Menu5_2_3=new Array("Centro de Comunicação e Letras - CCL","","",   4,20,250,"","","","","","",-1,0,-1,"","");           
			Menu5_2_3_1=new Array("Home","javascript:window.open('http://www.mackenzie.br/ccl.html')","",   0,20,180,"","","","","","",-1,0,-1,"","");			
			Menu5_2_3_2=new Array("Jornalismo","javascript:window.open('http://www.mackenzie.br/jornalismo.html')","",   0,20,180,"","","","","","",-1,0,-1,"","");			
            Menu5_2_3_3=new Array("Letras","javascript:window.open('http://www.mackenzie.br/letras.html')","",   0,20,180,"","","","","","",-1,0,-1,"","");
            Menu5_2_3_4=new Array("Publicidade e Propaganda","javascript:window.open('http://www.mackenzie.br/propaganda.html')","",   0,"","","","","","","","",-1,0,-1,"","");								

		Menu5_2_4=new Array("Centro de Ciências Sociais e Aplicadas - CCSA","","",   5,20,250,"","","","","","",-1,0,-1,"","");           
            Menu5_2_4_1=new Array("Home","javascript:window.open('http://www.mackenzie.br/ccsa.html')","",   0,20,250,"","","","","","",-1,0,-1,"","");			
			Menu5_2_4_2=new Array("Administração ","javascript:window.open('http://www.mackenzie.br/administracao_sp.html')","",   0,20,250,"","","","","","",-1,0,-1,"","");			
            Menu5_2_4_3=new Array("Ciências Contábeis","javascript:window.open('http://www.mackenzie.br/contabeis.html')","",   0,20,200,"","","","","","",-1,0,-1,"","");
	        Menu5_2_4_4=new Array("Administração com linha de formação em Comércio Internacional","javascript:window.open('http://www.mackenzie.br/comex_sp.html')","",   0,30,300,"","","","","","",-1,0,-1,"","");				
            Menu5_2_4_5=new Array("Ciências Econômicas","javascript:window.open('http://www.mackenzie.br/economicas.html')","",   0,20,200,"","","","","","",-1,0,-1,"","");			

		Menu5_2_5=new Array("Escola de Engenharia - EE","","",   7,20,120,"","","","","","",-1,0,-1,"","");           
            Menu5_2_5_1=new Array("Home","javascript:window.open('http://www.mackenzie.br/engenharia.html')","",   0,20,200,"","","","","","",-1,0,-1,"","");									
			Menu5_2_5_2=new Array("Engenharia Civil","javascript:window.open('http://www.mackenzie.br/civil.html')","",   0,20,250,"","","","","","",-1,0,-1,"","");
            Menu5_2_5_3=new Array("Engenharia de Materiais","javascript:window.open('http://www.mackenzie.br/materiais.html')","",   0,20,150,"","","","","","",-1,0,-1,"","");						
            Menu5_2_5_4=new Array("Engenharia de Produção","javascript:window.open('http://www.mackenzie.br/producao.html')","",   0,20,150,"","","","","","",-1,0,-1,"","");						
			Menu5_2_5_5=new Array("Engenharia Elétrica","javascript:window.open('http://www.mackenzie.br/eletrica.html')","",   0,20,150,"","","","","","",-1,0,-1,"","");			
			Menu5_2_5_6=new Array("Engenharia Mecânica","javascript:window.open('http://www.mackenzie.br/mecanica.html')","",   0,20,150,"","","","","","",-1,0,-1,"","");	
			Menu5_2_5_7=new Array("Tecnologia Elétrica","javascript:window.open('http://www.mackenzie.br/tecnologia_eletrica.html')","",   0,20,150,"","","","","","",-1,0,-1,"","");							
        
		Menu5_2_6=new Array("Escola Superior de Teologia - EST","","",   1,"","","","","","","","",-1,0,-1,"","");
			Menu5_2_6_1=new Array("Teologia","javascript:window.open('http://www.mackenzie.br/est.html')","",   0,20,120,"","","","","","",-1,0,-1,"","");		
		
		Menu5_2_7=new Array("Faculdade de Arquitetura e Urbanismo - FAU","","",   3,20,250,"","","","","","",-1,0,-1,"","");           	
			Menu5_2_7_1=new Array("Home","javascript:window.open('http://www.mackenzie.br/fau.html')","",   0,20,250,"","","","","","",-1,0,-1,"","");
			Menu5_2_7_2=new Array("Arquitetura e Urbanismo","javascript:window.open('http://www.mackenzie.br/arquitetura.html')","",   0,20,250,"","","","","","",-1,0,-1,"","");
	        Menu5_2_7_3=new Array("Desenho Industrial","javascript:window.open('http://www.mackenzie.br/desenhoindustrial.html')","",   0,"","","","","","","","",-1,0,-1,"","");

		Menu5_2_8=new Array("Faculdade de Computação e Informática - FCI","","",   3,20,250,"","","","","","",-1,0,-1,"","");           
            Menu5_2_8_1=new Array("Home","javascript:window.open('http://www.mackenzie.br/fci.html')","",   0,20,200,"","","","","","",-1,0,-1,"","");					
            Menu5_2_8_2=new Array("Ciência da Computação","javascript:window.open('http://www.mackenzie.br/cc.html')","",   0,20,200,"","","","","","",-1,0,-1,"","");			
			Menu5_2_8_3=new Array("Sistemas de Informação","javascript:window.open('http://www.mackenzie.br/si.html')","",   0,"","","","","","","","",-1,0,-1,"","");

        Menu5_2_9=new Array("Faculdade de Direito - FD","","",   1,20,200,"","","","","","",-1,0,-1,"","");
	        Menu5_2_9_1=new Array("Direito","javascript:window.open('http://www.mackenzie.br/direito.html')","",   0,20,100,"","","","","","",-1,0,-1,"","");		

	Menu5_3=new Array("Alphaville","","",   2,20,250,"","","","","","",-1,0,-1,"","");           	
	    Menu5_3_1=new Array("Centro de Ciências Biológicas e da Saúde - CCBS","","",    3,20,310,"","","","","","",-1,0,-1,"","");
			 Menu5_3_1_1=new Array("Home","javascript:window.open('http://www.mackenzie.br/251.html')","",    0,20,130,"","","","","","",-1,0,-1,"","");					
			 Menu5_3_1_2=new Array("Educação Física","javascript:window.open('http://www.mackenzie.br/educacao_fisica.html')","",    0,20,130,"","","","","","",-1,0,-1,"","");					
             Menu5_3_1_3=new Array("Fisioterapia","javascript:window.open('http://www.mackenzie.br/fisioterapia.html')","",   0,"","","","","","","","",-1,0,-1,"","");									 
	    Menu5_3_2=new Array("Centro de Ciências Sociais e Aplicadas - CCSA","","",    2,20,330,"","","","","","",-1,0,-1,"","");
	         Menu5_3_2_1=new Array("Administração ","javascript:window.open('http://www.mackenzie.br/administracao_tambore.html')","",   0,20,300,"","","","","","",-1,0,-1,"","");			
			 Menu5_3_2_2=new Array("Administração com linha de formação em Comércio Internacional","javascript:window.open('http://www.mackenzie.br/comex_tambore.html')","",   0,30,300,"","","","","","",-1,0,-1,"","");						 

	Menu5_4=new Array("Campinas","","",   2,20,250,"","","","","","",-1,0,-1,"","");           	
	    Menu5_4_1=new Array("Centro de Ciências Sociais e Aplicadas - CCSA","","",    1,20,330,"","","","","","",-1,0,-1,"","");
	         Menu5_4_1_1=new Array("Administração ","javascript:window.open('http://www.mackenzie.br/index.php?id=10558')","",   0,20,300,"","","","","","",-1,0,-1,"","");			
           Menu5_4_2=new Array("Faculdade de Direito - FD","","",   1,20,350,"","","","","","",-1,0,-1,"","");
	         Menu5_4_2_1=new Array("Direito","javascript:window.open('http://www.mackenzie.br/fdgraduacaocampinas.html')","",   0,20,100,"","","","","","",-1,0,-1,"","");		
		
		// Menu tree:
// MenuX=new Array("ItemText","Link","background image",number of sub elements,height,width,"bgcolor","bghighcolor",
//	"fontcolor","fonthighcolor","bordercolor","fontfamily",fontsize,fontbold,fontitalic,"textalign","statustext");
// Color and font variables defined in the menu tree take precedence over the global variables
// Fontsize, fontbold and fontitalic are ignored when set to -1.
// For rollover images ItemText format is:  "rollover?"+BaseHref+"Image1.jpg?"+BaseHref+"Image2.jpg" 			

Menu6=new Array("Pós-Graduação","","",6,20,105,"","","","","","",-1,-1,-1,"center","..:: Pós-Graduação");
    Menu6_1=new Array("Todos os Cursos","javascript:window.open('http://www.mackenzie.br/portal/CursosOferecidosPos_v2.php')","",    0,20,130,"","","","","","",-1,0,-1,"","");
	Menu6_2=new Array("Home","javascript:window.open('http://www.mackenzie.br/pesquisa_pos.html')","",    0,20,130,"","","","","","",-1,0,-1,"","");
	
	Menu6_3=new Array("Mestrado/Doutorado","","",   10,20,290,"","","","","","",-1,0,-1,"",""); 
	//Menu6_3=new Array("Mestrado/Doutorado","javascript:window.open('http://www.mackenzie.br/mestrado.html')","",    0,20,130,"","","","","","",-1,0,-1,"","");
		Menu6_3_1=new Array("Administração de Empresas","javascript:window.open('http://www.mackenzie.br/administracao_empresas.html')","", 0,30,130,"","","","","","",-1,0,-1,"","");
		Menu6_3_2=new Array("Arquitetura e Urbanismo","javascript:window.open('http://www.mackenzie.br/mestradofau.html')","", 0,30,130,"","","","","","",-1,0,-1,"","");
		Menu6_3_3=new Array("Ciências da <br> Religião","javascript:window.open('http://www.mackenzie.br/ciencias_religiao.html')","", 0,30,130,"","","","","","",-1,0,-1,"","");
		Menu6_3_4=new Array("Controladoria Empresarial","javascript:window.open('http://www.mackenzie.br/controladoria_empresarial.html')","", 0,30,130,"","","","","","",-1,0,-1,"","");
		Menu6_3_5=new Array("Direito Político e Econômico","javascript:window.open('http://www.mackenzie.br/direito_politico_economico.html')","", 0,30,130,"","","","","","",-1,0,-1,"","");
		Menu6_3_6=new Array("Distúrbios do Desenvolvimento","javascript:window.open('http://www.mackenzie.br/disturbios_desenvolvimento.html')","", 0,30,130,"","","","","","",-1,0,-1,"","");
		Menu6_3_7=new Array("Educação, Arte e História da Cultura","javascript:window.open('http://www.mackenzie.br/educacao_arte_historia_cultura.html')","", 0,30,130,"","","","","","",-1,0,-1,"","");
		Menu6_3_8=new Array("Engenharia de<br> Materiais","javascript:window.open('http://www.mackenzie.br/engenharia_materiais.html')","", 0,30,130,"","","","","","",-1,0,-1,"","");
		Menu6_3_9=new Array("Engenharia <br>Elétrica","javascript:window.open('http://www.mackenzie.br/engenharia_eletrica0.html')","", 0,30,130,"","","","","","",-1,0,-1,"","");
		Menu6_3_10=new Array("Letras","javascript:window.open('http://www.mackenzie.br/mestradoletras.html')","", 0,20,130,"","","","","","",-1,0,-1,"","");
	Menu6_4=new Array("Especialização","javascript:window.open('http://www.mackenzie.br/cursos3.html')","",               "","","","","","","","","",-1,0,-1,"","");			
	Menu6_5=new Array("In Company","javascript:window.open('http://www.mackenzie.br/in_company.html')","",               "","","","","","","","","",-1,0,-1,"","");				
	Menu6_6=new Array("Andrew Jumper","javascript:window.open('http://www.mackenzie.br/teologia.html')","",               "","","","","","","","","",-1,0,-1,"","");



