	// 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 (DropDown.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 DropDownSet(DropDown.direction.down, 0, 0, DropDown.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		// Menu >>>>>>>  Products
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("&#8250; e-4med", "#");
		menu1.addItem("&#8250; DICOM", "#");
		menu1.addItem("&#8250; Net-4-Training", "#");
		menu1.addItem("&#8250; Value Add Products", "#");

		// SubMenu >>>>>>>  e-4Med
		var subMenu1 = menu1.addMenu(menu1.items[0]);
		subMenu1.addItem("&#8250; Practice Management", "#");
		subMenu1.addItem("&#8250; Clinics & Hospitals", "#");
		subMenu1.addItem("&#8250; Regional Health Systems", "#");

		// SubMenu >>>>>>>  DICOM
		var subMenu2 = menu1.addMenu(menu1.items[1]);
		subMenu2.addItem("&#8250;	dpPACS DICOM 3 Web Server", "#");
		subMenu2.addItem("&#8250;	RIS (Radiology Information System)", "#");

		// SubMenu >>>>>>>  Net-4-Training
		var subMenu3 = menu1.addMenu(menu1.items[2]);
		subMenu3.addItem("&#8250;	Medical Training Network", "#");
		subMenu3.addItem("&#8250;	Medical Event Broadcasting", "#");

		// SubMenu >>>>>>>  Value Add Products
		var subMenu4 = menu1.addMenu(menu1.items[3]);
		subMenu4.addItem("&#8250;	Imaging", "#");
		subMenu4.addItem("&#8250;	Computing", "#");
		subMenu4.addItem("&#8250;	Networking", "#");
		subMenu4.addItem("&#8250;	Communication", "#");

		//==================================================================
		// Menu >>>>>>>  Technology & Applications
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("&#8250; Computer Aided Diagnostics", "#");
		menu2.addItem("&#8250; Medical Referrals/Networking", "#");
		menu2.addItem("&#8250; Interactive Distance Learning", "#");

		// SubMenu >>>>>>>  Computer Aided Diagnostics
		var subMenu1 = menu2.addMenu(menu2.items[0]);
		subMenu1.addItem("&#8250; Digital Imaging", "#");
		subMenu1.addItem("&#8250; Digital Video/Audio", "#");

		// SubMenu >>>>>>>  Medical Referrals/Networking
		var subMenu2 = menu2.addMenu(menu2.items[1]);
		subMenu2.addItem("&#8250; IEEE 1394 Networking", "#");
		subMenu2.addItem("&#8250; Local Area Networks", "#");
		subMenu2.addItem("&#8250; Broadband Wireless", "#");

		// SubMenu >>>>>>>  Interactive Distance Learning
		var subMenu3 = menu2.addMenu(menu2.items[2]);
		subMenu3.addItem("&#8250; Video/Audio Streaming Technology", "#");
		subMenu3.addItem("&#8250; Medical Events & Conferences", "#");

		//==================================================================
		// Menu >>>>>>>  Press Room
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("&#8250; News", "#");
		menu4.addItem("&#8250; Events", "#");

		//==================================================================
		// Menu >>>>>>>  About Us
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("&#8250; Company Overview", "#");
		menu5.addItem("&#8250; Vision", "#");
		menu5.addItem("&#8250; Management Team", "#");

		//==================================================================
		// Menu >>>>>>>  Contact Us
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("&#8250; Sales", "#");
		menu6.addItem("&#8250; Technical Support", "#");
		menu6.addItem("&#8250; Partners", "#");
		menu6.addItem("&#8250; Careers", "#");

		DropDown.renderAll();
	}

