	// 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.right, 145, -25, mtDropDown.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 would do theMenu.addMenu(theMenu.items[3])
		

		//==================================================================================================
		var menu45 = ms.addMenu(document.getElementById("menu45"));
		menu45.addItem("<span style='width:20px;height:16px;'></span>Apple Accessories - iPod/iPad", "ipod-ipad-accessories.html","_top"); 
		menu45.addItem("<span style='width:20px;height:16px;'></span>Apple Accessories - iPhone", "iphone-accessories.html","_top");


		//==================================================================================================

		//==================================================================================================
		var menu47 = ms.addMenu(document.getElementById("menu47"));
		menu47.addItem("<span style='width:20px;height:16px;'></span>Camcorders Accessories", "camcorders-accessories.html","_top");
		menu47.addItem("<span style='width:20px;height:16px;'></span>Canon Accessories", "canon-accessories.html","_top"); 
		menu47.addItem("<span style='width:20px;height:16px;'></span>Digital Cameras Accessories", "digital-cameras-accessories.html","_top");
		menu47.addItem("<span style='width:20px;height:16px;'></span>Lenses Accessories", "lenses-accessories.html","_top");

		
		//==================================================================================================

		//==================================================================================================
		var menu48 = ms.addMenu(document.getElementById("menu48"));
		menu48.addItem("<span style='width:20px;height:16px;'></span>Laptop Accessories", "laptop-accessories.html","_top");
		menu48.addItem("<span style='width:20px;height:16px;'></span>Mouse & Keyboard", "mouse-keyboard-accessories.html","_top");
		menu48.addItem("<span style='width:20px;height:16px;'></span>USB & 3.5mm", "usb-3-5mm-accessories.html","_top");
		menu48.addItem("<span style='width:20px;height:16px;'></span>Others Computer Accessories", "others-computer-accessories.html","_top");
		
		
		//==================================================================================================

		//==================================================================================================
		var menu49 = ms.addMenu(document.getElementById("menu49"));
		menu49.addItem("<span style='width:20px;height:16px;'></span>Nintendo DS Accessories", "nintendo-ds-accessories.html","_top");
		menu49.addItem("<span style='width:20px;height:16px;'></span>PS3 Accessories", "ps3-accessories.html","_top");
		menu49.addItem("<span style='width:20px;height:16px;'></span>Wii Accessories", "wii-accessories.html","_top");
		menu49.addItem("<span style='width:20px;height:16px;'></span>Xbox 360 Accessories", "xbox-360-accessories.html","_top");


		//==================================================================================================

		//==================================================================================================
		var menu51 = ms.addMenu(document.getElementById("menu51"));
		menu51.addItem("<span style='width:20px;height:16px;'></span>Office Electronics", "office-electronics.html","_top");
		menu51.addItem("<span style='width:20px;height:16px;'></span>Office Supplies", "office-supplies.html","_top");


		//==================================================================================================

       //==================================================================================================
		var menu52 = ms.addMenu(document.getElementById("menu52"));
		menu52.addItem("<span style='width:20px;height:16px;'></span>Bath Fixtures", "bath-fixtures.html","_top");
		menu52.addItem("<span style='width:20px;height:16px;'></span>Electrical", "electrical.html","_top");
		menu52.addItem("<span style='width:20px;height:16px;'></span>Electronics", "electronics.html","_top");
		menu52.addItem("<span style='width:20px;height:16px;'></span>Home D¨Ścor", "home-decor.html","_top");
		menu52.addItem("<span style='width:20px;height:16px;'></span>Kitchen & Dining", "kitchen-dining.html","_top");
		menu52.addItem("<span style='width:20px;height:16px;'></span>Lamps & Light Fixtures", "lamps-light-fixtures.html","_top");
		menu52.addItem("<span style='width:20px;height:16px;'></span>Outdoors & Sports", "outdoors-sports.html","_top");
		menu52.addItem("<span style='width:20px;height:16px;'></span>Power & Hand Tools", "power-hand-tools.html","_top");
                menu52.addItem("<span style='width:20px;height:16px;'></span>Safety & Security", "safety.html","_top");


		//==================================================================================================

		// 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();
	}
