	// 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 (lehrerDropDown.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 lehrerDropDownSet(lehrerDropDown.direction.down, 0, 0, lehrerDropDown.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		//About us
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("Locations", "http://www.vrbigd.com/locations"); // send no URL if nothing should happen onclick
		menu1.addItem("References", "http://www.vrbigd.com/references");
		menu1.addItem("Our Offices", "http://www.vrbigd.com/ouroffices");
		menu1.addItem("Our Team", "http://www.vrbigd.com/ourteam");
		menu1.addItem("News", "http://www.vrbigd.com/news");
		menu1.addItem("Contact us", "http://www.vrbigd.com/contactus");
		
	
		
		



		//==================================================================================================		
		//Top News
	
		// submenu
		/*var subMenu1 = menu1.addMenu(menu1.items[0]);
		subMenu1.addItem("- Bio Tech", "#");
		subMenu1.addItem("- Medical", "#");
		subMenu1.addItem("- Energy", "#");	

		var subMenu11 = subMenu1.addMenu(subMenu1.items[0]);
		subMenu11.addItem("- Product 1", "#");
		subMenu11.addItem("- Product 2", "#");
		subMenu11.addItem("- Product 3", "#");
		
		var subMenu12 = subMenu1.addMenu(subMenu1.items[1]);
		subMenu12.addItem("- Product 1", "#");
		subMenu12.addItem("- Product 2", "#");
		subMenu12.addItem("- Product 3", "#");	

	
		// submenu
		var subMenu1 = menu1.addMenu(menu1.items[1]);
		subMenu1.addItem("- Bio Tech", "#");
		subMenu1.addItem("- Medical", "#");
		subMenu1.addItem("- Energy", "#");*/
		
		


		//==================================================================================================
	//Selling a business
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("VR Advantage ", "http://www.vrbigd.com/vradvantage");
		menu2.addItem("VR Marketing ", "http://www.vrbigd.com/vrmarketing");
		menu2.addItem("What is my Business Worth", "http://www.vrbigd.com/what-is-my-business-worth"); // send no URL if nothing should happen onclick
	    menu2.addItem("Odds of Selling My Business", "http://www.vrbigd.com/mybusiness");
	    menu2.addItem("How to Hire a Business Broker", "http://www.vrbigd.com/hiringbusbroker");
		menu2.addItem("How to Value a Business", "http://www.vrbigd.com/valueabusiness");
		menu2.addItem("Our Services", "http://www.vrbigd.com/ourservices");
		menu2.addItem("FAQ", "http://www.vrbigd.com/faq");
		
		

		//==================================================================================================
				
	//Buying a business
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("Businesses for Sale", "http://www.vrbigd.com/business-for-sale"); // send no URL if nothing should happen onclick
		menu3.addItem("Buying Process", "http://www.vrbigd.com/buyingbusiness-proces"); // send no URL if nothing should happen onclick
		menu3.addItem("Financing a Business", "http://www.vrbigd.com/financing-business");
		menu3.addItem("Buy a Franchise", "http://www.vrbigd.com/buyfinance");
			
	

		//==================================================================================================
						
	//Merger & Acquisition
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("FAQ", "http://www.vrbigd.com/mergerfaq");// send no URL if nothing should happen onclick
		menu4.addItem("Structuring the Sale", "http://www.vrbigd.com/mergerstructure"); 
		menu4.addItem("Divestures", "divestures");
		menu4.addItem("Valuation Services", "http://www.vrbigd.com/merger-valuation");
		
		//==================================================================================================
		
						
	//Form
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("Non Disclosure Form", "http://www.vrbigd.com/nda"); 
		menu5.addItem("Personal Financial Statement Form", "http://www.vrbigd.com/personal-financial-statement-form"); 
		

		//==================================================================================================
					
						
	//Market and Data
	/*	var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("GE Sencing", "#"); // send no URL if nothing should happen onclick
		menu6.addItem("O2", "#");
		menu6.addItem("Cla", "#");*/

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