		// 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 (rcDropDown.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 rcDropDownSet(rcDropDown.direction.down, 0, 0, rcDropDown.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])
		//==================================================================================================
		
		// menu : Get Started
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("- Traditional Cheongsam", "/traditional-cheongsam/s-7.html");
		menu1.addItem("- Modern Cheongsam", "/modern-cheongsam/s-8.html");
		menu1.addItem("- Prom Dresses", "/prom-dress/s-9.html");
		menu1.addItem("- Blouse", "/prom-dress/s-10.html");
		menu1.addItem("- Jacket", "/jacket/s-31.html");
		menu1.addItem("- Halter Top", "/halter-tops/s-11.html");
		menu1.addItem("- Skirt", "/skirt/s-12.html");
		menu1.addItem("- Pants", "/pants/s-13.html");
		menu1.addItem("- Suit", "/suits/s-14.html");
		menu1.addItem("- Wedding Dress", "/wedding-dress/s-32.html");
		menu1.addItem("- Robe &amp; Pajama", "/sleepwear-and-pajamas/s-15.html");
		menu1.addItem("- Chinese Costume", "/chinese-costume/s-36.html");
		
		// menu : Company
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("- Chinese dress", "/chinese-dress/s-43.html");
		menu2.addItem("- Wedding dress", "/wedding-dress/s-44.html");
		menu2.addItem("- Blouse", "/blouse/s-45.html");
		menu2.addItem("- Jacket", "/jacket/s-46.html");
		menu2.addItem("- Kungfu Jacket", "/kungfu-jacket/s-47.html");
		
		
		// menu
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("- Kungfu", "/kungfu/s-16.html");
		menu3.addItem("- Jacket", "/jacket/s-17.html");
		menu3.addItem("- Robes & Pajamas", "/pajamas-and-sleepwear/s-18.html");
		menu3.addItem("- Shirt", "/shirt/s-19.html");
		menu3.addItem("- T-Shirts", "/t-shirts/s-20.html");
		menu3.addItem("- Chinese Costume", "/chinese-costume/s-37.html");
		

		// menu
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("- For Boys", "/for-boys/s-21.html");
		menu4.addItem("- For Girls", "/for-girls/s-22.html");		
		menu4.addItem("- T-Shirts", "/t-shirts/s-23.html");
		menu4.addItem("- Child's Accessories", "/childs-accessories/s-24.html");		
		
		// menu : 
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		
		menu5.addItem("- Silk Brocade", "/silk-brocade/s-48.html"); // send no URL if nothing should happen onclick
		menu5.addItem("- Rayon Brocade", "/rayon-brocade/s-49.html");
		menu5.addItem("- High Density Rayon Brocade", "/high-density-rayon-brocade/s-50.html");
		menu5.addItem("- Silk Shameuse", "/silk-shameuse/s-51.html");
		menu5.addItem("- Jacquard Silk", "/jacquard-silk/s-52.html");
		menu5.addItem("- Plain Silk Satin", "/plain-silk-satin/s-53.html");
		
		// menu : 
		
		// menu : Company
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("- New Arrival", "/chinese-clothing/new-arrival.html"); // send no URL if nothing should happen onclick
		menu6.addItem("- On Sale", "/chinese-clothing/sales.html");	
	
		
		

		//==================================================================================================
		// 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.
		//==================================================================================================
		rcDropDown.renderAll();
	}
