function menuen_old()
{
	this.selectedMenu=0;
	this.myTimer;
	
	this.show_sub=function(id)
	{
		var topBG=document.getElementById('top_'+id);
		topBG.style.background="#7797C2";
		
		var subBG=document.getElementById('div_'+id);
		subBG.style.display='';
	}
	this.hide_sub=function(tt)
	{
		var topBG=document.getElementById('top_'+tt);
		topBG.style.background="none";
		
		var subBG=document.getElementById('div_'+tt);
		subBG.style.display='none';
	}
	this.menuOut=function(id, subMen)
	{
		if(subMen!=false)
		{
			var subField=document.getElementById('sub_'+id+'_'+subMen);
			subField.style.background='#184B94';
		}
		this.myTimer = setTimeout("myMenu.hide_sub('"+id+"')", 1000);
	}
	this.menuOver=function(id, subMen)
	{
		if(subMen!=false)
		{
			var subField=document.getElementById('sub_'+id+'_'+subMen);
			subField.style.background='#7797C2';
		}
		this.show_sub(id);
		clearTimeout(this.myTimer);
	}
}

function menuen()
{
	this.denAktive=0;
	this.myTimer=0;
	
	this.top_over=function(nb)
	{
		var topBG=document.getElementById('top_'+nb);
		topBG.style.background="#7797C2";
		
		this.show_subMenu(nb, topBG);
	}
	
	this.top_out=function(nb)
	{
		var topBG=document.getElementById('top_'+nb);
		var subBG=document.getElementById('div_'+nb);
		
		this.myTimer=setTimeout("myMenu.hide_subMenu("+nb+")", 100);
		
		//alert(this.denAktive);
	}
	
	this.show_subMenu=function(nb, topBG)
	{
		var subBG=document.getElementById('div_'+nb);
		subBG.style.display='';
	}
	
	this.hide_subMenu=function(nb)
	{
		var topBG=document.getElementById('top_'+nb);
		topBG.style.background='none';
		var subBG=document.getElementById('div_'+nb);
		subBG.style.display='none';
	}
	
	this.sub_over=function(nb, subMen)
	{
		clearTimeout(this.myTimer);
		var subField=document.getElementById('sub_'+nb+'_'+subMen);
		subField.style.background='#7797C2';
	}
	
	this.sub_out=function(nb, subMen)
	{
		var subField=document.getElementById('sub_'+nb+'_'+subMen);
		subField.style.background='#184B94';
	}
	
}
