//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// MENU
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

//==================================================================================
//==================================================================================
//
// JS-PROGRAMMIERUNG
// AUTOR: MS
// ERSTELLT: 27.04.2009
//
//==================================================================================
//==================================================================================





//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Untermenu 1  -  PROGRAMM
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


function untermenu1()
{
	menu1 = document.getElementById('untermenu_1');
	untermenu1_einblenden();
}

function untermenu1_einblenden()
{
	startStatus1 = 1;
	aleft=176;
	atop=112;
	menu1.style.zIndex = '1000';
	menu1.style.display = 'block';
	menu1.style.position = 'absolute';
	menu1.style.left = aleft + 'px';
	menu1.style.top = atop + 'px';
}


//+++++++++++++++++++++++++++++++++++++++++++++++
// Ausblenden
//+++++++++++++++++++++++++++++++++++++++++++++++


function weguntermenu1 ()
{
  startStatus1 = 0;
  zeit = window.setTimeout("weguntermenu1_ausblenden ();", 150);  
}

function weguntermenu1_ausblenden ()
{
  weg_menu1 = document.getElementById('untermenu_1');
  if (startStatus1 == 0)
 	{
 		weg_menu1.style.display = 'none';
	}
  if (startStatus1 == 1)
 	{
    return;
 	}
  
}



