		function init() {
			//==========================================================================================
			// if supported, initialize TransMenus
			
			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.
// здесь неактивно подменю первого пункта 
			 document.getElementById("home").onmouseover = function() {ms.hideCurrent();
					this.className = "hover"; }
  			document.getElementById("home").onmouseout = function() { this.className = ""; }

		menu2.onactivate = function() { document.getElementById("service").className = "hover"; };
		menu2.ondeactivate = function() { document.getElementById("service").className = ""; };

//здесь неактивно подменю контакт, чтобы стало активно надо расккоментир. нижнее и удал.это
//соответсвенно надо раскомментировать var menu3 в transmenusub2
			document.getElementById("contact").onmouseover = function() { ms.hideCurrent();
					this.className = "hover";}
		document.getElementById("contact").onmouseout = function() { this.className = ""; }

	//	menu3.onactivate = function() { document.getElementById("contact").className = "hover"; };
	//	menu3.ondeactivate = function() { document.getElementById("contact").className = ""; };

		document.getElementById("links").onmouseover = function() { ms.hideCurrent();
					this.className = "hover";}
		document.getElementById("links").onmouseout = function() { this.className = ""; }

    //	menu4.onactivate = function() { document.getElementById("links").className = "hover"; };
	//	menu4.ondeactivate = function() { document.getElementById("links").className = ""; };
		
		document.getElementById("menu5").onmouseover = function() { ms.hideCurrent();
					this.className = "hover";}
		document.getElementById("menu5").onmouseout = function() { this.className = ""; }
		
//здесь невидно подменю №6, чтобы стало активно надо расккоментир. нижнее и удал.это
//соответсвенно надо раскомментировать var menu5 в transmenusub2 и в индексе
		document.getElementById("menu6").onmouseover = function() { ms.hideCurrent();
					this.className = "hover";}
		document.getElementById("menu6").onmouseout = function() { this.className = ""; }


		//menu5.onactivate = function() { document.getElementById("menu6").className = "hover"; };
		//menu5.ondeactivate = function() { document.getElementById("menu6").className = ""; };


   
	//  location.href="index1.html"
      }
		}
