function setActiveMenu(iIndex, iTry)
{
    if(typeof(iTry) == 'undefined')
    {
        iTry = 1;
    }

    try
    {
        top.menuFrame.objMenu.selectItem(iIndex);
    }
    catch(E)
    {
        if(iTry < 10)
        {
            window.setTimeout('setActiveMenu(' + iIndex + ', ' + (iTry + 1) + ');', 250);
        }
    }
}

function onLcContentPageLoaded_completeHandler(strActionImageUrl, strActionBannerNumber, strActionHeadlineText, strActionLongtextUrl, iMenuItemIndex, strMenuName, iMenuItemLevel)
{
    var iIndex = -1;

    if(strMenuName == 'Menü Germany' || strMenuName == 'Menü Austria' || strMenuName == 'Menü Switzerland')
    {
        iIndex = iMenuItemIndex;
    }

    setActiveMenu(iIndex);
    if(strActionBannerNumber.length > 0)
    {
        try
        {
            var objDiv = top.contentFrame.bodyFrame.document.getElementById('actionimage');
            if(objDiv != null)
            {
                objDiv.innerHTML = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="1000" height="1000" id="imageslider" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="http://www.shapeline.at/imageslider.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><param name="FlashVars" value="XMLURLIMAGES=http://www.shapeline.at/_lccms_/banners/' + strActionBannerNumber + '/flashbanner.xml&XMLURLSETTINGS=http://www.shapeline.at/_lccms_/banners/' + strActionBannerNumber + '/flashsettings.xml&XMLURLCONFIG=http://www.shapeline.at/sliderconfig01.xml" /><param name="wmode" value="transparent" /><embed src="http://www.shapeline.at/imageslider.swf" quality="high" bgcolor="#ffffff" width="1000" height="1000" name="imageslider" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" FlashVars="XMLURLIMAGES=http://www.shapeline.at/_lccms_/banners/' + strActionBannerNumber + '/flashbanner.xml&XMLURLSETTINGS=http://www.shapeline.at/_lccms_/banners/' + strActionBannerNumber + '/flashsettings.xml&XMLURLCONFIG=http://www.shapeline.at/sliderconfig01.xml" wmode="transparent" /></object>';
                objDiv.parentNode.style.display = 'block';
            }
        }
        catch(E)
        {
        }
    }
}
