function selectMenu(iIndex, iTry)
{
	if(typeof(iTry) == 'undefined')
	{
		iTry = 1;
	}
	
	try
	{
		top.menu.objMenu.selectItem(iIndex);
	}
	catch(E)
	{
		if(iTry < 10)
		{
			window.setTimeout('selectMenu(' + iIndex + ', ' + (iTry + 1) + ');', 250);
		}
	}
}

function onLcContentPageLoaded_completeHandler(strActionImageUrl, strActionBannerNumber, strActionHeadlineText, strActionLongtextUrl, iMenuItemIndex, strMenuName, iMenuItemLevel)
{	
	var iIndex = -1;
	if(strMenuName == 'Menü Deutsch')
	{
		iIndex = iMenuItemIndex;
	}
	
	selectMenu(iIndex);
}