// JavaScript Document - This is additional js for transmenu...
		function 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.
//=========================================================================================================================//
//  do one of these for each item WITH sub menus...
/*			<a href="stay.cfm" id="stay">stay</a>
			<a href="play.cfm" id="play">play</a>
			<a href="golf.cfm" id="golf">golf</a>
			<a href="see.cfm" id="see">see</a>
			<a href="dine.cfm" id="dine">dine</a>
			<a href="shop.cfm" id="shop">shop</a>
			<a href="live.cfm" id="live">live</a>
			<a href="events.cfm" id="events">events</a>
			<a href="request-more-information.cfm" id="request">request more information</a>
*/			
//=========================================================================================================================//				
				menu1.onactivate = function() { document.getElementById("meetingsaccommodations").className = "hover"; };
				menu1.ondeactivate = function() { document.getElementById("meetingsaccommodations").className = ""; };

				menu2.onactivate = function() { document.getElementById("meetingsseedo").className = "hover"; };
				menu2.ondeactivate = function() { document.getElementById("meetingsseedo").className = ""; };

//=========================================================================================================================//
//  do one of these for each item WITHOUT sub menus...
//		<a href="##" id="pagesection">#pageSection#</a> 
//=========================================================================================================================//
				document.getElementById("meetingsandgroups").onmouseover = function() {
					ms.hideCurrent();
					this.className = "hover";
				}

				document.getElementById("meetingsandgroups").onmouseout = function() { this.className = ""; }
//=========================================================================================================================//				
				
				document.getElementById("meetingsvenues").onmouseover = function() {
					ms.hideCurrent();
					this.className = "hover";
				}

				document.getElementById("meetingsvenues").onmouseout = function() { this.className = ""; }
//=========================================================================================================================//				
				
				document.getElementById("meetingsweddings").onmouseover = function() {
					ms.hideCurrent();
					this.className = "hover";
				}

				document.getElementById("meetingsweddings").onmouseout = function() { this.className = ""; }
//=========================================================================================================================//

	
				
				document.getElementById("meetingsrequest").onmouseover = function() {
					ms.hideCurrent();
					this.className = "hover";
				}

				document.getElementById("meetingsrequest").onmouseout = function() { this.className = ""; }
//=========================================================================================================================//

				
	
			}
		}