// 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...
/*	
		NOTE: THERE ARE NO SUBMENUS IN THIS SECTION
*/			
//=========================================================================================================================//				
/*				menu1.onactivate = function() { document.getElementById("XXX").className = "hover"; };
				menu1.ondeactivate = function() { document.getElementById("XXX").className = ""; };
*/				
		
//=========================================================================================================================//
//  do one of these for each item WITHOUT sub menus...
/*			
			<a href="media.cfm" id="media">#pageSection#</a>
			<a href="media-press-releases.cfm" id="mediapressreleases">press releases</a>
			<a href="media-area-information.cfm" id="mediaareainformation">area information</a>
			<a href="media-photography.cfm" id="photography">photography</a>
			<a href="media-press-kit.cfm" id="mediapresskit">press kit</a>
			<a href="contact.cfm" id="mediacontact">contact us</a>
			 
*/			
//=========================================================================================================================//
				document.getElementById("media").onmouseover = function() {
					ms.hideCurrent();
					this.className = "hover";
				}

				document.getElementById("media").onmouseout = function() { this.className = ""; }
//=========================================================================================================================//				
				
				document.getElementById("mediapressreleases").onmouseover = function() {
					ms.hideCurrent();
					this.className = "hover";
				}

				document.getElementById("mediapressreleases").onmouseout = function() { this.className = ""; }
//=========================================================================================================================//				
				
				document.getElementById("mediaareainformation").onmouseover = function() {
					ms.hideCurrent();
					this.className = "hover";
				}

				document.getElementById("mediaareainformation").onmouseout = function() { this.className = ""; }
//=========================================================================================================================//
				
				document.getElementById("photography").onmouseover = function() {
					ms.hideCurrent();
					this.className = "hover";
				}

				document.getElementById("photography").onmouseout = function() { this.className = ""; }
//=========================================================================================================================//
				
				document.getElementById("mediapresskit").onmouseover = function() {
					ms.hideCurrent();
					this.className = "hover";
				}

				document.getElementById("mediapresskit").onmouseout = function() { this.className = ""; }
//=========================================================================================================================//
				
				document.getElementById("mediacontact").onmouseover = function() {
					ms.hideCurrent();
					this.className = "hover";
				}

				document.getElementById("mediacontact").onmouseout = function() { this.className = ""; }

				
			}
		}