	// 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
		//==================================================================================================
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("Web Design", "san-diego-web-design.html"); // send no URL if nothing should happen onclick
		menu1.addItem("Web Marketing(SEO)", "web-marketing.html");
		menu1.addItem("eCommerce Solutions", "ecommerce-solutions.html");
		//menu1.addItem("Graphic Design", "san-diego-graphic-design.html");
		//menu1.addItem("Flash Design", "san-diego-flash-design.html");
		menu1.addItem("Programming", "web-programming.html");
		menu1.addItem("Business Consulting", "business-consulting.html");
		menu1.addItem("Offline Marketing", "offline-marketing.html");
		menu1.addItem("Copywriting", "san-diego-copywriting.html");
		menu1.addItem("Web Analytics", "website-analytics.html");
		menu1.addItem("Hosting", "site-hosting.html");


		// submenu - Webdesign
		var subMenu1 = menu1.addMenu(menu1.items[0]);
		subMenu1.addItem("- Web Design", "san-diego-web-design.html");
		subMenu1.addItem("- Flash Design", "san-diego-flash-design.html");
		subMenu1.addItem("- Graphic Design", "san-diego-graphic-design.html");
		subMenu1.addItem("- Templates", "website-templates.html");
		subMenu1.addItem("- eCommerce", "ecommerce-solutions.html");
		subMenu1.addItem("- Web Programming", "web-programming.html");
		
		// submenu2 - Webmarketing
		var subMenu2 = menu1.addMenu(menu1.items[1]);
		subMenu2.addItem("- Web Marketing", "web-marketing.html");
		subMenu2.addItem("- PPC Campaign", "ppc-campaign.html");
		subMenu2.addItem("- Link Building", "link-building.html");
		subMenu2.addItem("- Copywriting", "san-diego-copywriting.html");
		
		//Development
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Development Cycle", "website-development-cycle.html");
		//menu2.addItem("Business Strategy", "#");


		//Portfolio
	   	var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("Web Design", "portfolio.html");
		menu3.addItem("Flash Design", "flashdesign.html");
		menu3.addItem("Logo/Print Design", "logodesign.html");
		menu3.addItem("eCommerce", "ecommercedesign.html");

		//Resources
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Helpful Tools", "website-tools.html");
		menu4.addItem("Articles", "articles.html");
		
		//Company
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("About Us", "about.html");
		menu5.addItem("Testimonials", "testimonials.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.
		//==================================================================================================
		lehrerDropDown.renderAll();
	}
