function openMyTeenTV(url)
{
	newwindow=window.open(url,"MyTeenTv","height=680,width=780,scrollbars=yes,toolbar=yes,resizable=yes");
	if (window.focus) {newwindow.focus()}
}

function reorderMenues() {


    reorderMenuesGlobal();
	var BottomMenu = document.getElementById('BottomMenu');
	var TopMenu = document.getElementById('TopMenu');
	var SideMenu = document.getElementById('SideMenu');
	var SiteNavigation = document.getElementById('SiteNavigation');
	var ServiceNavigation = document.getElementById('ServiceNavigation');
	var AreaNavigation = document.getElementById('AreaNavigation');

	var AmateurClipNavigationItemList = document.getElementById("AmateurClipNavigationItemList");
    if(AmateurClipNavigationItemList) {
        var li = document.createElement("li");
        li.setAttribute('id', 'PromoEventKommentareItemList');
        li.innerHTML = "<a class=\"unselected\" id=\"PromoEventKommentareItem\" href=\"javascript:jumpTextPage('PromoEventKommentare')\" rel=\"nofollow\">Tipps</a>";
        AmateurClipNavigationItemList.parentNode.appendChild(li);
    }

	if(SideMenu && BottomMenu && ServiceNavigation) {
	    SideMenu.removeChild(ServiceNavigation);
	    BottomMenu.appendChild(ServiceNavigation);
	}

}

