function setMenu(iIndex, iTry)
{
	if(typeof(iTry) == 'undefined')
	{
		iTry = 1;
	}
	
	try	
	{
		top.menuFrame.Menu_OnPageLoadHandler(iIndex);
	}
	catch(E)
	{
		if(iTry < 10)
		{
			window.setTimeout('setMenu(' + iIndex + ', ' + (iTry + 1) + ');', 250);
		}
	}
}

function onLcContentPageLoaded_completeHandler(strActionImageUrl, strActionBannerNumber, strActionHeadlineText, strActionLongtextUrl, iMenuItemIndex, strMenuName, iMenuItemLevel)
{
	var iIndex = -1;
	
	if((displayMenu == 'ger' && strMenuName == 'Menü Deutsch') || (displayMenu == 'eng' && strMenuName == 'Menü Englisch'))
	{
		iIndex = iMenuItemIndex;
	}
	
	setMenu(iIndex);
}
