		function transmenu_init() {

			//==========================================================================================
			// if supported, initialize TransMenus
			//==========================================================================================
			// Check isSupported() so that menus aren't accidentally sent to non-supporting browsers.
			// This is better than server-side checking because it will also catch browsers which would
			// normally support the menus but have javascript disabled.
			//
			// If supported, call initialize() and then hook whatever image rollover code you need to do
			// to the .onactivate and .ondeactivate events for each menu.
			//==========================================================================================
			if (TransMenu.isSupported()) {

				TransMenu.initialize();


				// hook all the highlight swapping of the main toolbar to menu activation/deactivation
				// instead of simple rollover to get the effect where the button stays hightlit until
				// the menu is closed.
				menu1.onactivate = function() { document.getElementById("tmenu1").className = "hover"; };
				menu1.ondeactivate = function() { document.getElementById("tmenu1").className = ""; };

				menu2.onactivate = function() { document.getElementById("tmenu2").className = "hover"; };
				menu2.ondeactivate = function() { document.getElementById("tmenu2").className = ""; };


				menu3.onactivate = function() { document.getElementById("tmenu3").className = "hover"; };
				menu3.ondeactivate = function() { document.getElementById("tmenu3").className = ""; };

				menu4.onactivate = function() { document.getElementById("tmenu4").className = "hover"; };
				menu4.ondeactivate = function() { document.getElementById("tmenu4").className = ""; };

				menu5.onactivate = function() { document.getElementById("tmenu5").className = "hover"; };
				menu5.ondeactivate = function() { document.getElementById("tmenu5").className = ""; };

	
				menu6.onactivate = function() { document.getElementById("tmenu6").className = "hover"; };
				menu6.ondeactivate = function() { document.getElementById("tmenu6").className = ""; };

				menu7.onactivate = function() { document.getElementById("tmenu7").className = "hover"; };
				menu7.ondeactivate = function() { document.getElementById("tmenu7").className = ""; };

				
//				document.getElementById("tmenu6").onmouseover = function() {
	//				ms.hideCurrent();
		//			this.className = "hover";
			//	}

				//document.getElementById("tmenu6").onmouseout = function() { this.className = ""; }
			}
		}

	// 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 (TransMenu.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 TransMenuSet(TransMenu.direction.down, 1, 0, TransMenu.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("tmenu1"));
		menu1.addItem("Home", "http://www.bsgautoglass.net");
//		menu1.addItem("Register for Events", "http://www.bsgautoglass.net");
//		menu1.addItem("Fresh Summit", "http://www.bsgautoglass.net");
//		menu1.addItem("Foodservice Conference", "http://www.bsgautoglass.net");		
//		menu1.addItem("Produce Solutions Conference", "http://www.bsgautoglass.net"); 		
//		menu1.addItem("Leadership Symposium", "http://www.bsgautoglass.net"); 
//		menu1.addItem("Fresh Produce Academy (FPA)", "http://www.bsgautoglass.net/education/"); 
//		menu1.addItem("Webinars - Online Learning", "http://www.bsgautoglass.net/events/webinars.cfm"); 
//		menu1.addItem("Future Events Calendar", "http://www.bsgautoglass.net/events/future_events.cfm"); 		
//		menu1.addItem("2008 PMA Trade Show Participation ", "http://www.bsgautoglass.net/events/tradeShows.cfm"); 		
//		menu1.addItem("Sponsorship Opportunities", "http://www.bsgautoglass.net/events/sponsorships.cfm"); 		

		//==================================================================================================

		var menu2 = ms.addMenu(document.getElementById("tmenu2"));
		menu2.addItem("About BSG", "http://bsgautoglass.net/about_en.asp?TT_IN=GSGK&T_N=GSJJ");
		menu2.addItem("Inspection Equipment", "http://bsgautoglass.net/about_en.asp?TT_IN=GSGK&T_N=JCSB");
		menu2.addItem("Producing Equipment", "http://bsgautoglass.net/about_en.asp?TT_IN=GSGK&T_N=SCSB");
		menu2.addItem("Product Certificate", "http://bsgautoglass.net/succeed_case_en.asp");


		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("tmenu3"));
		menu3.addItem("Products", "http://bsgautoglass.net/about_en.asp?TT_IN=CPZX");
		<!--- menu2.addItem("On Sale", "http://www.bsgautoglass.net/Default.aspx?tabid=147"); --->
		<!--- menu2.addItem("Online Subscription Products", "http://www.bsgautoglass.net/default.aspx?tabid=64&RedirectTabId=134");	 --->

		//==================================================================================================

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("tmenu4"));
		menu4.addItem("Online Order <img src='http://www.bsgautoglass.net/images/lock.gif' >", "http://bsgautoglass.net/saleout_en.asp");


	
		//==================================================================================================

		var menu5 = ms.addMenu(document.getElementById("tmenu5"));
		menu5.addItem("Online Purchase", "http://bsgautoglass.net/salein_en.asp");
		//==================================================================================================
	
		//==================================================================================================

		//==================================================================================================

		var menu6 = ms.addMenu(document.getElementById("tmenu6"));
		menu6.addItem("Staff Strategy", "http://bsgautoglass.net/about_en.asp?TT_IN=RLZY&T_N=RCCL");			
//		menu5.addItem("Technology & Standards", "http://www.bsgautoglass.net");				
//		submenu0.addItem("Coalition Participation", "http://www.bsgautoglass.net");
//		submenu0.addItem("Crisis Assistance", "http://www.bsgautoglass.net");
//		submenu0.addItem("Issue Alerts", "http://www.bsgautoglass.net");
		var menu7 = ms.addMenu(document.getElementById("tmenu7"));
		menu7.addItem("Message board", "http://bsgautoglass.net/online_en.asp");
		menu7.addItem("Contact Us", "http://bsgautoglass.net/about_en.asp?TT_IN=LXWM&T_N=LXWM");
		menu7.addItem("map", "http://bsgautoglass.net/about_en.asp?TT_IN=LXWM&T_N=gsdte");
//		menu4.addItem("New Member Tour", "http://www.bsgautoglass.net/membership/tour.cfm");
<!--- tech stds menu --->		
//		var submenu54 = menu5.addMenu(menu5.items[3]);
//		submenu54.addItem("Product Identification Standards", "http://www.bsgautoglass.net");
//		submenu54.addItem("Automated Data Capture", "http://www.bsgautoglass.net");

<!--- irc menu --->
//		var submenu2 = menu5.addMenu(menu5.items[5]);
//		submenu2.addItem("Benefits & Services", "http://www.bsgautoglass.net");
//		submenu2.addItem("Fact Sheets", "http://www.bsgautoglass.net");
//		submenu2.addItem("Hot Topics", "http://www.bsgautoglass.net");
//		submenu2.addItem("IRC Team", "http://www.bsgautoglass.net/irc/meet.cfm");


		//==================================================================================================
//		menu6.addItem("Consumption & Nutrition", "http://www.bsgautoglass.net");
///		menu6.addItem("Food Safety & Security", "http://www.bsgautoglass.net");
///		menu6.addItem("Growing & Production", "http://www.bsgautoglass.net");
//		menu6.addItem("Immigration Reform", "http://www.bsgautoglass.net");		
//		menu6.addItem("Country of Origin Labeling", "http://www.bsgautoglass.net");
//		menu6.addItem("Packaging", "http://www.bsgautoglass.net");
//		menu6.addItem("Transportation", "http://www.bsgautoglass.net");

		
//		var submenu62 = menu6.addMenu(menu6.items[0]);
//		submenu62.addItem("Biotechnology", "http://www.bsgautoglass.net");
//		submenu62.addItem("Fresh-Cut", "http://www.bsgautoglass.net");
///		submenu62.addItem("Irradiation", "http://www.bsgautoglass.net");
//		submenu62.addItem("Organics", "http://www.bsgautoglass.net");
//		submenu62.addItem("Perchlorate", "http://www.bsgautoglass.net");
//		submenu62.addItem("Pesticides", "http://www.bsgautoglass.net");
//		submenu62.addItem("Wax Coatings", "http://www.bsgautoglass.net");

		//==================================================================================================
// 	 About BSG
//	 Inspection Equipment
//	 Producing Equipment
//	 Product Certificate

		//==================================================================================================
		
		//==================================================================================================

		//==================================================================================================

		//==================================================================================================
		// 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.
		//==================================================================================================
		TransMenu.renderAll();
	}