
if (mtDropDown.isSupported()) {
	var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

	
	
	// [ MENU 01] ******************************************************//
	var menu1 = ms.addMenu(document.getElementById("menu1"));
	menu1.addItem("About WINFroum", "about.html");
	menu1.addItem("Nutrition Advisers", "presenter.html");
		
		
	
	// [ MENU 02] ******************************************************//
	var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Top 10 Tips", "Top10Tips.html");
		menu2.addItem("Breakfast", "breakfast.html");
		menu2.addItem("Think Your Drink", "ThinkYourDrink.html");
		menu2.addItem("Nutrition News", "NutritionNews.html");
		
		

	// [ MENU 04] ******************************************************//
	var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Executive Summaries", "ExecutiveSummary.html");
		menu4.addItem("Coaches Q & A", "Q&A.html");
		


	mtDropDown.renderAll();
}


