
			var activeEntry='';
			
			var origBgColor='transparent';
			var overBgColor='lightsteelblue';
			var origColor='black';
			var selColor='green';
			

		
			function mouseOver(objId)
			{
				var obj=document.getElementById(objId);
				obj.style.background=overBgColor;
				obj.style.border='solid black 1px';
				obj.style.padding='2px 9px 2px 9px';
			}

			function mouseOut(objId)
			{
				var obj=document.getElementById(objId);
				obj.style.background=origBgColor;
				obj.style.border='none';
				obj.style.padding='3px 10px 3px 10px';

				if(activeEntry != '')
				{
						var aObj=document.getElementById(activeEntry);
						aObj.style.border='dashed black 1px';
						aObj.style.padding='2px 9px 2px 9px';				
				}
			}

			function switchEntry(toId)
			{
				var obj;

				activeEntry=toId;
				
				obj=document.getElementById(toId);
				obj.style.border='dashed black 1px';
				obj.style.padding='2px 9px 2px 9px';
			}			

	function preloadExplorer()
	{
		var w;
		var a=new String(navigator.appName);

		/* exception because of Explorer ... */
		if(a.indexOf("Explorer")!=-1 || a.indexOf("IE")!=-1)
		{
			//w="126px";
			w="136px";
			var obj1=document.getElementById('supermenu');			
			obj1.style.width=w;				
		}
/*		else
			w="116px";
*/
	}		
	
	function chLoc(html)
	{
		document.location=html;
	}
		