<?php
/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    design
 * @package     base_default
 * @copyright   Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
 * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */
?>
<?php
/**
 * Top menu for store
 *
 * @see Mage_Page_Block_Html_Topmenu
 */
?>
<?php //echo count($this->getStores()); die(); ?>

<?php $_menu = $this->getHtml('level-top') ?>
<div class="container">
    <div id="mainnav">
        <nav class="navbar navbar-default navbar-main" role="navigation">

            <div class="navbar-header">
                <button type="button" class="navbar-toggle " data-toggle="collapse" data-target=".navbar-main-collapse">
                    <span class="sr-only"><?php echo $this->__('Toggle Navigation') ?></span>
                    <span class="icon-bar"></span>
                    <span class="icon-bar"></span>
                    <span class="icon-bar"></span>
                </button>
                <button type="button" class="navbar-toggle header-cart-qty pull-right">
                    <a href="<?php echo $this->getUrl('checkout/cart') ?>">
                        <?php
                        $cart = Mage::getModel('checkout/cart')->getQuote()->getData();
                        if (isset($cart['items_qty'])) {
                            echo '<span class="item-number-notification-clean">' . (int)$cart['items_qty'] . '</span>';
                        } else {
                            echo '<span class="item-number-notification-clean">0</span>';
                        }
                        ?>
                        <i class="fa fa-shopping-cart"></i>
                    </a>
                </button>
                <h1 class="logo visible-xs">
                    <strong><?php echo $this->getLogoAlt() ?></strong>
                    <a href="<?php echo $this->getUrl('') ?>" title="<?php echo $this->getLogoAlt() ?>" class="logo">
                        <img src="http://panasonic.lecanal.fr/skin/frontend/lecanal/oscar/images/logo_panasonic_gris.png" alt="<?php echo $this->getLogoAlt() ?>" style="width: 27%;" />
                    </a>
                </h1>
            </div>


            <?php if(Mage::getBlockSingleton('page/html_header')->getIsHomePage()): ?>
                <div class="collapse navbar-collapse navbar-main-collapse">
                    <ul class="nav navbar-nav">
                        <li>
                            <a href="#" class="product-1-link">Stimulateur Fermeté Visageee</a>
                        </li>
                        <li>
                            <a href="#" class="product-2-link">Soin Thermal Visage</a>
                        </li>
                        <li>
                            <a href="#" class="product-3-link">Brosse Spéciale Peaux Sensibles</a>
                        </li>
                    </ul>
                </div>
            <?php else: ?>
                <div class="collapse navbar-collapse navbar-main-collapse">
                    <ul class="nav navbar-nav">
                        <li>
                            <?php $product = Mage::getModel('catalog/product')->loadByAttribute('sku','EH-XT20')?>
                            <a href="<?= $product->getProductUrl() ?>" class="product-1-link">Stimulateur Fermeté Visageae</a>
                        </li>
                        <li>
                            <?php $product = Mage::getModel('catalog/product')->loadByAttribute('sku','EH-XC10')?>
                            <a href="<?= $product->getProductUrl() ?>" class="product-2-link">Soin Thermal Visage</a>
                        </li>
                        <li>
                            <?php $product = Mage::getModel('catalog/product')->loadByAttribute('sku','EH-SA31')?>
                            <a href="<?= $product->getProductUrl() ?>" class="product-3-link">Brosse Spéciale Peaux Sensibles</a>
                        </li>
                    </ul>
                </div>
            <?php endif; ?>



        </nav>
    </div>
</div>