	// set up drop downs anywhere in the body of the page. I think the bottom of the page is better.. 
	// but you can experiment with effect on loadtime.
	if (DropDown.isSupported()) {

		//==================================================================================================
		// create a set of dropdowns
		//==================================================================================================
		// the first param should always be down, as it is here
		//
		// The second and third param are the top and left offset positions of the menus from their actuators
		// respectively. To make a menu appear a little to the left and bottom of an actuator, you could use
		// something like -5, 5
		//
		// The last parameter can be .topLeft, .bottomLeft, .topRight, or .bottomRight to inidicate the corner
		// of the actuator from which to measure the offset positions above. Here we are saying we want the 
		// menu to appear directly below the bottom left corner of the actuator
		//==================================================================================================
		var ms = new DropDownSet(DropDown.direction.down, 0, 0, DropDown.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================

		//==================================================================================================
		// add a sub-menu
		//==================================================================================================
		// to add a sub menu to an existing menu object, call it's addMenu method and pass it the item from
		// the parent menu which should act as it's actuator. To add a submenu to the fourth item of a menu
		// called "theMenu", you would3 do theMenu.addMenu(theMenu.items[3])
		//==================================================================================================
		// menu : Get Started

		//schedule Menu
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("- Eventos", menuBaseUrl + "/index.cfm?fa=event.ppvhome"); // send no URL if nothing should happen onclick
		menu2.addItem("- Resultados", menuBaseUrl + "/index.cfm?fa=news.eventResults");
		menu2.addItem("- Programação de TV", menuBaseUrl + "/index.cfm?fa=tvshow.home");
		menu2.addItem("- Aparições Públicas ", menuBaseUrl + "/index.cfm?fa=event.Appearances");
		menu2.addItem("- Eventos Futuros", menuBaseUrl + "/index.cfm?fa=event.FullSchd");
		menu2.addItem("- Calendário", menuBaseUrl + "/index.cfm?fa=event.Calendar");
		
		//tickets menu
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("- Comprar Ingressos ", "http://www.ticketmaster.com/artist/806762");
		menu3.addItem("- StubHub: Buy/Sell Tickets", "http://www.stubhub.com/ultimate-fighting-tickets/?gcid=c12289x944-tixnav");
		menu3.addItem("- Pacotes de Ingressos", "http://www.primesport.com/shop/ufc-packages.asp");

		//UFC Vault menu
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("- Lutas Preliminares Não Transmitidas ", "http://video.ufc.com/Collection.aspx?cdid=2130");
		menu4.addItem("- Novidades", "http://video.ufc.com/Collection.aspx?cdid=2129");
		menu4.addItem("- Lutas Mais Baixadas", "http://video.ufc.com/Collection.aspx?cdid=2128");
		menu4.addItem("- Replays de Eventos ao Vivo", "http://video.ufc.com/Content.aspx?cbid=9037");	
		
		//Community
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("- UFC Fight Club", "http://www.ufcfightclub.com/");
		menu5.addItem("- UFC Community", "http://community.ufc.com/");
		menu5.addItem("&nbsp;&nbsp;- Meus Amigos", "http://community.ufc.com/friends");
		menu5.addItem("&nbsp;&nbsp;- Meu Perfil", "http://community.ufc.com/profile");
		menu5.addItem("&nbsp;&nbsp;- Chat", "http://community.ufc.com/chat");
		menu5.addItem("&nbsp;&nbsp;- Fórum", "http://community.ufc.com/forum_preview");
		menu5.addItem("&nbsp;&nbsp;- Eventos Futuros", "http://community.ufc.com/events");
		menu5.addItem("&nbsp;&nbsp;- Eventos Recentes ", "http://community.ufc.com/events");
			
		// menu for News
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("- Arquivo de Notícias", menuBaseUrl + "/index.cfm?fa=news.home");
		menu6.addItem("- Resultados", menuBaseUrl + "/index.cfm?fa=news.eventResults");				

		// menu for Fighters
		var menu7 = ms.addMenu(document.getElementById("menu7"));
		menu7.addItem("- Lutadores", menuBaseUrl + "/index.cfm?fa=fighter.allfighters");
		menu7.addItem("- Entrevistas ", menuBaseUrl + "/index.cfm?fa=fighter.Interviews&ptid=1");		
		menu7.addItem("- Campeões", menuBaseUrl + "/index.cfm?fa=fighter.TitleHolders&cid=3");				
		menu7.addItem("- Hall da Fama ", menuBaseUrl + "/index.cfm?fa=fighter.HallOfFame");				
		
		// menu for Octagon Girls
		var menu8 = ms.addMenu(document.getElementById("menu8"));
		menu8.addItem("- As Garotas do Octagon  ", menuBaseUrl + "/index.cfm?fa=OctagonGirl.home");
		menu8.addItem("- Galeria  ", menuBaseUrl + "/index.cfm?fa=OctagonGirl.GalleryMenu");							

		// menu for Multimedia
		var menu9 = ms.addMenu(document.getElementById("menu9"));
		menu9.addItem("- Galeria de Fotos  ", menuBaseUrl + "/index.cfm?fa=MultiMedia.GalleryList");
		menu9.addItem("- Galeria de Vídeos  ", menuBaseUrl + "/index.cfm?fa=MultiMedia.video");	
		menu9.addItem("- Galeria de Áudio  ", menuBaseUrl + "/index.cfm?fa=MultiMedia.Audio");
		menu9.addItem("- Wallpapers  ", menuBaseUrl + "/index.cfm?fa=MultiMedia.Wallpaper");
		menu9.addItem("- Música no UFC  ", menuBaseUrl + "/index.cfm?fa=MultiMedia.UFCMusic");	
				
		// menu for Learn UFC
		var menu10 = ms.addMenu(document.getElementById("menu10"));
		menu10.addItem("- Fatos", menuBaseUrl + "/index.cfm?fa=LearnUFC.FactSheet");	
		menu10.addItem("- Regras", menuBaseUrl + "/index.cfm?fa=LearnUFC.Rules");
		menu10.addItem("- Estilos de Luta", menuBaseUrl + "/index.cfm?fa=LearnUFC.Styles");		
		menu10.addItem("- História", menuBaseUrl + "/index.cfm?fa=LearnUFC.History");				
		menu10.addItem("- Perguntas Frequentes", menuBaseUrl + "/index.cfm?fa=LearnUFC.QandA");			

		// menu for Store
		var menu11 = ms.addMenu(document.getElementById("menu11"));
		menu11.addItem("- Roupas Masculinas", "http://store.digitalstores.co.uk/ufc/Mens/category.html?c=ufc_mens");
		menu11.addItem("- Roupas Femininas", "http://store.digitalstores.co.uk/ufc/Womens/category.html?c=ufc_womens");
		menu11.addItem("- Jovem", "http://store.digitalstores.co.uk/ufc/Youth/category.html?c=ufc_youth");
		menu11.addItem("- Lutador", "http://store.digitalstores.co.uk/ufc/Fighters/category.html?c=ufc_fighters");
		menu11.addItem("- Acessórios", "http://store.digitalstores.co.uk/ufc/Accessories/category.html?c=ufc_accessories");
		
		DropDown.renderAll();
	}