function onLcContentPageLoaded_completeHandler(strActionImageUrl, strActionBannerNumber, strActionHeadlineText, strActionLongtextUrl, iMenuItemIndex, strMenuName, iMenuItemLevel)
{
	setMenuActive(strMenuName, iMenuItemIndex);
}

function setMenuActive(strMenuName, iMenuItemIndex)
{
	try
	{
		var iIndex = -1;
			
		if(strMenuName == 'Menü Deutsch' || strMenuName == 'Menü Englisch' || strMenuName == 'Menü Italienisch')
		{
			iIndex = iMenuItemIndex;
		}
			
		if(iIndex > -1)
		{
			top.contentFrame.Menu_OnPageLoadHandler(iIndex);
		}
		else
		{
			top.contentFrame.SetActiveItem(null);
		}
	}
	catch(E)
	{
		window.setTimeout('setMenuActive("' + strMenuName + '", ' + iMenuItemIndex + ');', 250);
	}
}
