	// 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);



		//==================================================================================================

		// create a dropdown menu

		//==================================================================================================

		// the first parameter should be the HTML element which will act actuator for the menu

		//==================================================================================================

		var menu1 = ms.addMenu(document.getElementById("menu1"));

		menu1.addItem("- Puzzles", "dispuzzles.php"); 

		menu1.addItem("- Games", "disgames.php");	

		menu1.addItem("- PVC/Rubber/Porcelain", "disfigures.php");

		menu1.addItem("- Puppets", "dispuppets.php");

		menu1.addItem("- Marionettes", "dismarionett.php");

		menu1.addItem("- Dolls", "disdolls.php");	

		menu1.addItem("- Misc.", "dismisc.php");	



		//==================================================================================================

                // to add a sub menu to an existing menu object, call its 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 subMenu1 = menu1.addMenu(menu1.items[1]);

		//subMenu1.addItem("name", "link");

		

		

		// menu2 : Books

		var menu2 = ms.addMenu(document.getElementById("menu2"));

		menu2.addItem("- Comics", "comics.php");

		menu2.addItem("- Hard/Soft Back", "books.php");

		menu2.addItem("- Coloring Books", "color.php");		

		menu2.addItem("- Activity", "activity.php");



		// menu3 : Costumes

		var menu3 = ms.addMenu(document.getElementById("menu3"));

		menu3.addItem("- Halloween/Play", "masks.php");



		// menu4 : Figures

		var menu4 = ms.addMenu(document.getElementById("menu4"));

		menu4.addItem("- Stuffed", "stuffed.php");

		menu4.addItem("- PVC/Rubber/Polystone", "figures.php");

		menu4.addItem("- Puppets", "puppets.php");

		menu4.addItem("- Elastolin", "custom.php");



		// menu5 : Toys

		var menu5 = ms.addMenu(document.getElementById("menu5"));

		menu5.addItem("- Colorforms", "colorforms.php");

                menu5.addItem("- Dishes/Glasses", "dishes.php");

		menu5.addItem("- Games", "games.php");

		menu5.addItem("- Misc. Toys", "toys.php");

		menu5.addItem("- Prince Valiant", "val.php");

                menu5.addItem("- Outer Space Toys", "space.php");

		menu5.addItem("- Puzzles", "puzzles.php");

		menu5.addItem("- Records", "records.php");

                menu5.addItem("- Speciality Items", "special.php");			

                menu5.addItem("- VHS", "vhs.php");

		

		

                // menu6 : Viewers

		var menu6 = ms.addMenu(document.getElementById("menu6"));

		menu6.addItem("- All Types", "viewers.php");



		// menu7 : Watches

		var menu7 = ms.addMenu(document.getElementById("menu7"));

		menu7.addItem("- Timepieces", "time.php");

		

		// menu8 : Media

		var menu8 = ms.addMenu(document.getElementById("menu8"));

		menu8.addItem("- 8mm Film", "8mm.php");

		menu8.addItem("- 8mm Projector", "8mmp.php");



		// menu9 : Misc

		var menu9 = ms.addMenu(document.getElementById("menu9")); 

                menu9.addItem("- Figures", "custom.php");			

                menu9.addItem("- Dioramas", "dioramas.php");



		// menu10 : model kits

		var menu10 = ms.addMenu(document.getElementById("menu10"));

		menu10.addItem("- SciFi", "scifimodel.php");

                menu10.addItem("- Monsters", "monsters.php");

                menu10.addItem("- Super Heros", "super.php");

                menu10.addItem("- Pro Painted", "promodels.php");
                
                menu10.addItem("-  Dinosaurs", "dinosaurs.php");

                menu10.addItem("- All Others", "models.php");

                menu10.addItem("- Rocketeer Resin Kits", "rocketeer.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();

	}

