	// 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

		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("- Events", menuBaseUrl + "/index.cfm?fa=event.ppvhome"); // send no URL if nothing should happen onclick
		menu1.addItem("- Ergebnisse", menuBaseUrl + "/index.cfm?fa=news.eventResults");
		menu1.addItem("- TV-Kalender", menuBaseUrl + "/index.cfm?fa=tvshow.home");
		menu1.addItem("- Auftritte", menuBaseUrl + "/index.cfm?fa=event.Appearances");
		menu1.addItem("- Alle Termine", menuBaseUrl + "/index.cfm?fa=event.FullSchd");
		menu1.addItem("- Kalender", menuBaseUrl + "/index.cfm?fa=event.Calendar");
	




		
		//tickets menu
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("- Tickets kaufen", "http://www.ticketmaster.com/artist/806762");
		menu2.addItem("- StubHub: Buy/Sell Tickets", "http://www.stubhub.com/ultimate-fighting-tickets/?gcid=c12289x944-tixnav");
		menu2.addItem("- Ticket-Pakete", "http://www.primesport.com/shop/ufc-packages.asp");

	
//		alert(menu2);
		
		//==================================================================================================
		// write drop downs into page
		//==================================================================================================
		// this method writes all the HTML for the menus into the page with document.write(). It must be
		// called within the body of the HTML page.
		//==================================================================================================

		// menu for Play & Win
		var menu11 = ms.addMenu(document.getElementById("menu11"));
		menu11.addItem("- Hintergrunde", "http://ufc.mobi/uwww_render.pl?newsID=28450&fnml=1&ua=&site=wufc&op=");
		menu11.addItem("- Klingeltone", "http://ufc.mobi/uwww_render.pl?newsID=28451&fnml=1&ua=&site=wufc&op=");
		menu11.addItem("- Videos", "http://ufc.mobi/uwww_render.pl?newsID=28452&fnml=1&ua=&site=wufc&op=");
		menu11.addItem("- Fighter", "http://ufc.mobi/uwww_render.pl?newsID=24613&ua=&site=wufc&op=");
		menu11.addItem("- Octagon Girls", "http://ufc.mobi/uwww_render.pl?newsID=24614&ua=&site=wufc&op=");


		
		// menu for News
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("- Alle News", menuBaseUrl + "/index.cfm?fa=news.home");
//		menu5.addItem("- Press Releases", menuBaseUrl + "/index.cfm?fa=news.PressReleases");		
//		menu5.addItem("- Press Coverage", menuBaseUrl + "/index.cfm?fa=news.PressCoverage");		
//		menu5.addItem("- UFC in the News", menuBaseUrl + "/index.cfm?fa=news.UfcInTheNews");				
//		menu5.addItem("- Interviews", menuBaseUrl + "/index.cfm?fa=news.Interviews");				
		//menu5.addItem("- In the Corner", menuBaseUrl + "/index.cfm?fa=news.InTheCorner");				
		menu5.addItem("- Ergebnisse", menuBaseUrl + "/index.cfm?fa=news.eventResults");				
//		menu5.addItem("- RSS Feeds", menuBaseUrl + "/index.cfm?fa=rss.NewsRSS");	



		// menu for Fighters
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("- Alle Fighter", menuBaseUrl + "/index.cfm?fa=fighter.allfighters");
		menu6.addItem("- Interviews", menuBaseUrl + "/index.cfm?fa=fighter.Interviews&ptid=1");		
		menu6.addItem("- Titeltrager", menuBaseUrl + "/index.cfm?fa=fighter.TitleHolders&cid=3");				
		menu6.addItem("- Hall of Fame", menuBaseUrl + "/index.cfm?fa=fighter.HallOfFame");				
//		menu6.addItem("- Fighter Blogs", menuBaseUrl + "/index.cfm?fa=fighter.Blogs");	
//		menu6.addItem("- T.U.F. Casts", menuBaseUrl + "/index.cfm?fa=TUF.historycast");				
		




		
		// menu for Media
		var menu7 = ms.addMenu(document.getElementById("menu7"));
//		menu7.addItem("- Latest Multimedia", menuBaseUrl + "/index.cfm?fa=MultiMedia.home");
		menu7.addItem("- Die Octagon Girls", menuBaseUrl + "/index.cfm?fa=MultiMedia.GalleryList");
//		menu7.addItem("- Video Gallery", menuBaseUrl + "/index.cfm?fa=MultiMedia.video");
//		menu7.addItem("- Audio Gallery", menuBaseUrl + "/index.cfm?fa=MultiMedia.Audio");			
//		menu7.addItem("- Real Quick with Mike Swick", menuBaseUrl + "/index.cfm?fa=search.results&ss=real+quick");		
		menu7.addItem("- Bildergalerie", menuBaseUrl + "/index.cfm?fa=MultiMedia.Wallpaper");				
		//menu7.addItem("- UFC Music", menuBaseUrl + "/index.cfm?fa=MultiMedia.UFCMusic");		
//		menu7.addItem("- UFC On Demand", "http://video.ufc.com");		






		// menu for Octagon Girls
		//var menu8 = ms.addMenu(document.getElementById("menu8"));
		//menu8.addItem("- The Octagon Girls", menuBaseUrl + "/index.cfm?fa=OctagonGirl.home");
		//menu8.addItem("- UFC Calendar", menuBaseUrl + "/index.cfm?fa=OctagonGirl.UFCCalendar");
		//menu8.addItem("- Girls Blog", menuBaseUrl + "/index.cfm?fa=OctagonGirl.Blog");		
		//menu8.addItem("- Gallery", menuBaseUrl + "/index.cfm?fa=OctagonGirl.GalleryMenu");				
		//menu8.addItem("- Bios", menuBaseUrl + "/index.cfm?fa=OctagonGirl.Bios");				
		
		// menu for Learn UFC
		var menu9 = ms.addMenu(document.getElementById("menu9"));
		menu9.addItem("- Fakten", menuBaseUrl + "/index.cfm?fa=LearnUFC.FactSheet");	
		menu9.addItem("- Sicherheit der Kampfer", menuBaseUrl + "/index.cfm?fa=LearnUFC.Rules");
		menu9.addItem("- Der Sport", menuBaseUrl + "/index.cfm?fa=LearnUFC.Styles");		
		menu9.addItem("- Leitstory", menuBaseUrl + "/index.cfm?fa=LearnUFC.History");				
		//menu9.addItem("- Techniques", menuBaseUrl + "/index.cfm?fa=LearnUFC.Techniques");						
		menu9.addItem("- Haufig gestellte Fragen", menuBaseUrl + "/index.cfm?fa=LearnUFC.QandA");			
		//menu9.addItem("- Event Results", menuBaseUrl + "/index.cfm?fa=news.eventResults");				
		//menu9.addItem("- T.U.F. History", menuBaseUrl + "/index.cfm?fa=TUF.historymenu");				
		//menu9.addItem("- UFC Announcers", menuBaseUrl + "/index.cfm?fa=announcers.home");		
		

		
		// menu for Store
		var menu10 = ms.addMenu(document.getElementById("menu10"));
		menu10.addItem("- Kleidung fur Männer", "http://store.digitalstores.co.uk/ufc/Mens/category.html?c=ufc_mens");
		menu10.addItem("- Kleidung fur Frauen", "http://store.digitalstores.co.uk/ufc/Womens/category.html?c=ufc_womens");
		menu10.addItem("- Kinder", "http://store.digitalstores.co.uk/ufc/Youth/category.html?c=ufc_youth");
		menu10.addItem("- Fighter", "http://store.digitalstores.co.uk/ufc/Fighters/category.html?c=ufc_fighters");
		menu10.addItem("- Furs Training", "http://store.digitalstores.co.uk/ufc/Gloves/category.html?c=ufc_gloves");
		menu10.addItem("- Accessoires", "http://store.digitalstores.co.uk/ufc/Accessories/category.html?c=ufc_accessories");
		
		
		
		//menu10.addItem("- DVDs", "http://ufcstore.seenon.com/index.php?v=ufc-dvds");
		//menu10.addItem("- Kopfbedeckungen", "http://ufcstore.seenon.com/index.php?v=ufc-headwear");
		//menu10.addItem("- Poster", "http://ufcstore.seenon.com/index.php?v=ufc-posters");
		//menu10.addItem("- Nahrungserganzung", "http://ufcstore.seenon.com/index.php?v=ufc-supplements");
		//menu10.addItem("- Bucher & Programmhefte", "http://ufcstore.seenon.com/index.php?v=ufc-booksandprograms");
		//menu10.addItem("- Gutscheine", "http://ufcstore.seenon.com/index.php?v=ufc-giftcards");
		//menu10.addItem("- UFC Auction (New!)", "http://ufc.auction.seenon.com/?pa=bnUFC_Gutter_120307");
		//menu10.addItem("- Partner Werden", "https://signup.cj.com/member/brandedPublisherSignUp.do?air_refmerchantid=1841930");
		
		
		
		
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("- Vorkampfe", "http://video.ufc.com/Collection.aspx?cdid=2130");
		menu3.addItem("- Jetzt Neu", "http://video.ufc.com/Collection.aspx?cdid=2129");
		menu3.addItem("- Beliebteste Clips", "http://video.ufc.com/Collection.aspx?cdid=2128");
		menu3.addItem("- Ganze Veranstaltungen", "http://video.ufc.com/Content.aspx?cbid=9037");

		


		
		
		var menu12 = ms.addMenu(document.getElementById("menu12"));
		menu12.addItem("- UFC Fight Club", "http://www.ufcfightclub.com/");
		menu12.addItem("- UFC Community", "http://community.ufc.com/");
		menu12.addItem("&nbsp;&nbsp;- Meine Freunde", "http://community.ufc.com/friends");
		menu12.addItem("&nbsp;&nbsp;- Mein Profil", "http://community.ufc.com/profile");
		menu12.addItem("&nbsp;&nbsp;- Chat", "http://community.ufc.com/chat");
		menu12.addItem("&nbsp;&nbsp;- Forum", "http://community.ufc.com/forum_preview");
		menu12.addItem("&nbsp;&nbsp;- Kommende Events", "http://community.ufc.com/events");
		menu12.addItem("&nbsp;&nbsp;-Letzte Events", "http://community.ufc.com/events");
		






		
/*
		// menu for Links
		var menu9 = ms.addMenu(document.getElementById("menu9"));
*/		

		DropDown.renderAll();
	}