<?php echo $this->doctype(); ?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>ALLE ZIELE - INTERNATIONALE Spedition</title>
<link rel="stylesheet" type="text/css" href="<?php echo $this->baseUrl('css/screen.css') ?>" media="screen" />
<?php
echo $this->headMeta();
echo $this->headScript();
echo $this->headLink();
?>

<link rel="stylesheet" type="text/css" href="<?php echo $this->baseUrl('css/print.css') ?>" media="print" />
<script type="text/javascript" src="<?php echo $this->baseUrl('js/curvycorners.src.js') ?>"></script>
<base href="<?php echo $this->baseUrl(); ?>">
</head>
<body<?php echo $this->placeholder('bodyClass'); ?>>
<?php echo $this->flashMessages('<div class="sticky">%s</div>'); ?>
<div id="stage">
    <div id="head_teaser" class="roundBox">&nbsp;</div>
        <div class="menue">
        <?php
        echo $this->navigation()->menu()
                  ->setMaxDepth(1)
                  ->setExpandSiblingNodesOfActiveBranch(true);
        ?>
    </div>
    <div class="content_wrapper">
        <div id="main_content" class="roundBox">
            <div class="inner_wrapper">
                <?php
                    $head = $this->navigation()->menu()->findOneById('headnav')->toArray();
                    echo $this->navigation()->menu()->renderMenu( new Zend_Navigation($head['pages']), $head);
                ?>
                <?php echo $this->layout()->content; ?>
            </div>
        </div>
        <?php echo $this->partial('footer.phtml'); ?>
    </div>
</div>
</body></html>