For layout reasons I needed to have two different header.phtml (header.phtml / header1.phtml). But if I now copy the header block in the page.xml, only the definitions of the latest block seems to work (both of them work independly, but when both blocks are in the page.xml only the latest of both is causing changes).
<block type="page/html_header" name="header" as="header">
<block type="page/template_links" name="top.links" as="topLinks"/>
<block type="page/html_wrapper" name="top.bar" as="topBar" translate="label">
<label>Breadcrumbs</label>
<action method="setElementClass"><value>top-bar</value></action>
</block>
</block>
<block type="page/html_header1" name="header1" as="header1">
<block type="page/template_links" name="top.links" as="topLinks"/>
<block type="page/html_wrapper" name="top.bar" as="topBar" translate="label">
<label>Breadcrumbs</label>
<action method="setElementClass"><value>top-bar</value></action>
</block>
</block>
Can anybody tell me, where my error is?