function menuHover(p_this, p_ebene) 
{
	switch(p_ebene) 
	{
		case 1:
			p_this.style.backgroundColor='#FFFFFF';
			break;
		case 2:
			p_this.style.backgroundColor='#FFFFFF';
			break;
		case 3:
			p_this.style.backgroundColor='#FFFFFF';
			break;
		default:
			p_this.style.backgroundColor='#FFFFFF';
			break;
	}
}
  
function menuOut(p_this, p_ebene) 
{
	switch(p_ebene) 
	{
		case 1:
			p_this.style.backgroundColor='';
			break;
		case 2:
			p_this.style.backgroundColor='';
			break;
		case 3:
			p_this.style.backgroundColor='';
			break;
		default:
			p_this.style.backgroundColor='';
			break;
	}
}
  
