

function reorderMenues() {
 reorderMenuesGlobal();
 var side = document.getElementById('SideMenu');
 var topMenu = document.getElementById('TopMenu');
 var service = document.getElementById('ServiceNavigation');
 var siteNav = document.getElementById('SiteNavigation');
 var contentheight = document.getElementById('Content');
 side.removeChild(service);
 side.removeChild(siteNav);
 topMenu.appendChild(service);
 topMenu.appendChild(siteNav);

    var ShopCartNavigationItemSubMenu = document.getElementById('ShopCartNavigationItemSubMenu');
    if(ShopCartNavigationItemSubMenu) {
	    ShopCartNavigationItemSubMenu.parentNode.removeChild(ShopCartNavigationItemSubMenu);
 	    contentheight.insertBefore(ShopCartNavigationItemSubMenu, contentheight.firstChild);
 	    ShopCartNavigationItemSubMenu.style.display='block';
    }
  	else {
  	}

 height1 = side.offsetHeight;
 height2 = contentheight.offsetHeight;
 if (height1 >= height2) {
	topMenu.style.height = height1 + 168 + "px";
	// alert("Das Menue (" + height1 + ") ist groesser als der Content (" + height2 + ")!");
 }
 if (height2 > height1) {
	topMenu.style.height = height2 + 202 + "px";
	// alert("Der Content (" + height2 + ") ist groesser als das Menue (" + height1 + ")!");
 }

}


function rotateTeaserImage(mode, start, end, alt, type, path) {
}
