﻿//	
//	function InitializeMenu1(strIndex) 
//	{
//		/* get a collection of menus */
//		
//		objSpanCollection = document.body.all.MainMenu.getElementsByTagName("SPAN");
//		for (var i = 0; i < objSpanCollection.length; i++)
//		{
//			var objSpan = objSpanCollection(i);
//			/* get a collection of Menus' height */
//			menuHeightCollection[i] = objSpan.childNodes(1).clientHeight;
//			
//			/* get a collection of links inside a submenu */
//			var objLinkCollection = document.body.all.MainMenu.getElementsByTagName("A");
//			for (var j = 0; j < objLinkCollection.length; j++)
//			{
//				var objA = objLinkCollection(j);
//				//objA.onmouseover = ShowDescription;
//				//objA.onmousemove = ShowDescription;
//				//objA.onmouseout = HideDescription;
//			}
//			
//			/* assign the click event to every Menuheader */
//			objSpan.childNodes(0).onclick = ControlMenu;
//			
//		}

function Active_Link(obj)
{
obj.style.color="#03AB62";
obj.href="#";
}

