
	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.
		//==================================================================================================
		var ms = new DropDownSet(DropDown.direction.down, -5, 0, DropDown.reference.bottomLeft);
                                                        //x , y relative to nav image
		//==================================================================================================
		// create a dropdown menu
	
		
		//About Aushon
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("Overview", "/Company.php");
		menu1.addItem("Management Team", "/Management-Team.php");
		menu1.addItem("Press Releases", "/Press-Releases.php");
		menu1.addItem("Careers", "/Careers.php");
		menu1.addItem("Contact Us", "/Contact-Us.php");
		menu1.addItem("Events", "/Events.php");
		
		//Products & Services
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Overview", "/Products-and-Services.php");
		menu2.addItem("2470 Arrayer", "/2470-Arrayer.php");
		menu2.addItem("Aushon Assay Services", "/SearchLight-Assay-Services.php");
		menu2.addItem("Aushon Multiplex Immunoassay Kits", "/SearchLight-Immuno-Assay-Kits.php");
		//menu2.addItem("Custom Microarray Printing", "/Custom-Microarray-Printing.php");
		menu2.addItem("Signature Plus Imaging and Analysis System", "/Signature-plus-Imaging-and-Analysis-System.php");
			
		//Support
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		
		//Resource Center
		var menu4 = ms.addMenu(document.getElementById("menu4"));
				
        
        //third Level
        //comment out these lines to remove level
        //var subMenu1 = menu2.addMenu(menu2.items[3]);
		//subMenu1.addItem("sub sub", "#");
		//subMenu1.addItem("Sub Sub Two", "#");
		//subMenu1.addItem("Sub Sub Three", "#");
		//subMenu1.addItem("Sub Sub Four", "#");
		//alert("Hello");

		//==================================================================================================
		// write drop downs into page
		//==================================================================================================

		DropDown.renderAll();
	}

