
		function setMeactive(Level,Numof)
			{

			if (isactive==Numof) 
				{return}
			if (isactive==1)
				{
					document.getElementById('Separator'+(isactive-1)).style.backgroundImage = "url('img/topinactleftstart.gif')";
					document.getElementById('Separator'+(isactive-1)).style.width='1';
				}
			else
				{
					document.getElementById('Separator'+(isactive-1)).style.backgroundImage = "url('img/topinactright.gif')";
					document.getElementById('Separator'+(isactive-1)).style.width='2';
				}
			document.getElementById('Level'+(isactive)).style.backgroundImage = "url('img/topinact.gif')";
			document.getElementById('Separator'+(isactive)).style.backgroundImage = "url('img/topinactright.gif')";
			document.getElementById('L'+isactive+'Link').style.fontWeight='normal';
			document.getElementById('Separator' + (isactive)).style.width='2';

			document.getElementById('L'+Numof+'Link').style.fontWeight='bold';
			document.getElementById('Separator' + (Numof-1)).style.backgroundImage = "url('img/topactleftstart.gif')";
			document.getElementById('Separator'+(Numof-1)).style.width='1';
			document.getElementById(Level).style.backgroundImage = "url('img/topact.gif')";
			document.getElementById('Separator' + (Numof)).style.backgroundImage = "url('img/topactright2.gif')";
			document.getElementById('Separator' + (Numof)).style.width='2';
			isactive=Numof;

			}

		function doSomething(e,menu,Numof)
			{
				var relTarg;
				if (e.relatedTarget) relTarg = e.relatedTarget;
				else if (e.toElement) relTarg = e.toElement;
				
				var keepShowing=whereisPointer(relTarg,Numof)		
				if (!keepShowing)
				{document.getElementById(menu).style.visibility='hidden';document.getElementById('Hereyouare').style.visibility='visible';
				setMeactive('Level'+isSiteof,isSiteof)
				}
			}
		function whereisPointer(e,Numof)
			{if (e.id !=='menu'+Numof && e.id !=='L'+Numof+'Link' && e.id !=='Level'+Numof && e.id !=='L'+Numof+'1' && e.id !=='L'+Numof+'2' && e.id !=='L'+Numof+'3' && e.id !=='L'+Numof+'4' && e.id !=='L'+Numof+'5' && e.id !=='L'+Numof+'6' && e.id !=='L'+Numof+'SL1' && e.id !=='L'+Numof+'SL2'  && e.id !=='L'+Numof+'SL3' && e.id !=='L'+Numof+'SL4' && e.id !=='L'+Numof+'SL5' && e.id !=='L'+Numof+'SL6') 	
				{return false}
				else
				{return true}

			}