
	// 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 (mtDropDown.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 mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);
		var msLeft = new mtDropDownSet(mtDropDown.direction.right, 0, 0, mtDropDown.reference.topRight);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		
		if(document.getElementById("newProduct"))
		{
			var menuNewProducts = ms.addMenu(document.getElementById("newProduct"));
			menuNewProducts.addItem("Bubble Bath", "bubble_bath.php");
		    menuNewProducts.addItem("Baby Vapor Bath", "baby_vapor.php");
			menuNewProducts.addItem("Baby Bath For Bedtime", "baby_bedtime.php");
			menuNewProducts.addItem("Foot Cream", "foot_cream.php");
			menuNewProducts.addItem("Body Cream", "body_cream.php");
			menuNewProducts.addItem("Food Storage Bags", "food_storage_bags.php");
			menuNewProducts.addItem("Creamy Petroleum Jelly", "creamy_petroleum_jelly.php");
			menuNewProducts.addItem("Body Wash For Men", "for_men.php");
			menuNewProducts.addItem("Body Wash ", "body_wash.php");
			menuNewProducts.addItem("Household Aerosol Cleaners ", "household_aerosol_cleaners.php");
			}
		if(document.getElementById("handSoapMenu"))
		{
			var menuHandSoaps = msLeft.addMenu(document.getElementById("handSoapMenu"));
			menuHandSoaps.addItem('Pearlized Liquid Soaps', "pearlized_liquid_soaps.php");
			menuHandSoaps.addItem('Clear Liquid Soaps', "clear_liquid_soaps.php");
			menuHandSoaps.addItem('Antibacterial Soap', "antibacterial_soap.php");
			menuHandSoaps.addItem("Hand Sanitizer", "hand_sanitizer.php");
			menuHandSoaps.addItem("Hand Sanitizer Tube", "hand_sanitizer_tube.php");
			menuHandSoaps.addItem("2x2 Hand Sanitizer", "2x2_hand_sanitizer.php");
			menuHandSoaps.addItem("Hand Sanitizing Towels", "hand_sanitizing_towels.php");
			menuHandSoaps.addItem("Seasonal Soaps", "seasonal_soaps.php");
			menuHandSoaps.addItem("Kiddie Soaps", "kiddie_soaps.php");

			}

		if(document.getElementById("healthAndBeautyMenu"))
		{
			var menuHealthAndBeauty = msLeft.addMenu(document.getElementById("healthAndBeautyMenu"));
			menuHealthAndBeauty.addItem('Wipes & Towelettes', "wipes_and_towelettes.php");
			menuHealthAndBeauty.addItem('Hair Care', "hair_care_floral.php");
			menuHealthAndBeauty.addItem('Personal & Body Care', "bubble_bath.php");
			
			
			var hairCareMenu = menuHealthAndBeauty.addMenu(menuHealthAndBeauty.items[1]);
			hairCareMenu.addItem("Floral Essence Shampoo & Conditioner", "hair_care_floral.php");
			hairCareMenu.addItem("Herbal Nature Shampoo & Conditioner", "hair_care_herbal.php");
			hairCareMenu.addItem("Hair Spray", "hair_care_spray.php");
			hairCareMenu.addItem("Styling Gel", "hair_care_gel.php");
			
			var personalCareMenu = menuHealthAndBeauty.addMenu(menuHealthAndBeauty.items[2]);
			personalCareMenu.addItem("Bubble Bath", "bubble_bath.php");
			personalCareMenu.addItem("Body Cream", "body_cream.php");
			personalCareMenu.addItem("Body Powder", "body_powder.php");
			personalCareMenu.addItem("Medicated Body Powder ", "medicated_body_powder.php");
			personalCareMenu.addItem("Body Lotion ", "body_lotion.php");
			personalCareMenu.addItem("Creamy Petroleum Jelly ", "creamy_petroleum_jelly.php");
			personalCareMenu.addItem("Petroleum Jelly ", "petroleum_jelly.php");
			personalCareMenu.addItem("Bandages ", "bandages.php");
			personalCareMenu.addItem("Nail Polish Remover ", "nail_polish.php");
			personalCareMenu.addItem("Nail Polish Remover Towels ", "nail_polish_towels.php");
			personalCareMenu.addItem("Foot Cream ", "foot_cream.php");
			personalCareMenu.addItem("Body Wash For Men ", "for_men.php");
			personalCareMenu.addItem("Body Wash", "body_wash.php");
			
		}
		
		if(document.getElementById("householdProductsMenu"))
		{
			var menuHouseHold = msLeft.addMenu(document.getElementById("householdProductsMenu"));
			menuHouseHold.addItem('Pocket Tissues', "paper_tissues.php");
			menuHouseHold.addItem('Aerosol Air Fresheners', "air_fresheners.php");
			menuHouseHold.addItem('Closet Block Air Freshener & Deodorizer', "solid_air_fresheners.php");
			menuHouseHold.addItem("Dishwashing Liquid", "dishwashing_liquid.php");
			menuHouseHold.addItem("Trash Bags", "trash_bags.php");
			menuHouseHold.addItem("Anti-Bacterial Wet Wipes", "wet_wipes.php");
			menuHouseHold.addItem("Food Storage Bags", "food_storage_bags.php");
			menuHouseHold.addItem("Household Aerosol Cleaners", "household_aerosol_cleaners.php");

			
		}
		
		if(document.getElementById("babyProducts"))
		{
			var menuBabyProducts = msLeft.addMenu(document.getElementById("babyProducts"));
			menuBabyProducts.addItem('Baby Wipes', "baby_wipes.php");
			menuBabyProducts.addItem('Baby Powder', "baby_powder.php");
			menuBabyProducts.addItem('Baby Petroleum Jelly', "baby_pet_jelly.php");
			menuBabyProducts.addItem('Baby Room Air Freshener', "baby_air_freshener.php");
			menuBabyProducts.addItem('Baby Shampoo', "baby_shampoo.php");
			menuBabyProducts.addItem('Creamy Baby Oil', "creamy_baby_oil.php");
			menuBabyProducts.addItem('Baby Lotion', "baby_lotion.php");
			menuBabyProducts.addItem('Baby Oil', "baby_oil.php");
			menuBabyProducts.addItem('Baby Wash', "baby_wash.php");
			menuBabyProducts.addItem('Baby Vapor Bath', "baby_vapor.php");
			menuBabyProducts.addItem('Baby Bath For Bedtime', "baby_bedtime.php");
		}
		
		//==================================================================================================
		// 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.
		//==================================================================================================
		mtDropDown.renderAll();
	}
