<?php
/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/osl-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.
 *
 * @category   default_default
 * @package    Mage
 * @copyright  Copyright (c) 2004-2007 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
 * @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 *
 *AGGIUNTI GLI ALIGN="CENTER" PER CENTRARE I NUOVI PRODOTTI NEL BLOCCO IN HOMEPAGE - DA QUI SI PUO' ANCHE VARIARE IL NUMERO DI OGGETTI DA MOSTRARE E
 *SOSTITUENDO TR CON TD SI POSSONO METTERE IN ORIZZONTALE E NON PIU' IN VERTICALE
 */
?>
<?php if (($_products = $this->getProductCollection()) && $_products->getSize()): ?>
<div class="box base-mini">
<div class="head">
	<h4><?php echo $this->__('New Products') ?></h4>
</div>
<table align="center" cellspacing="0" class="recently-list" id="recently-compared-list-table">
<?php $i=0; foreach ($_products->getItems() as $_product): ?>
    <?php if ($i>2): continue; endif; ?>

    <tr align="center">
        <div align="center">
            <br>
			<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_product->getName()) ?>">
                <img class="product-image" src="<?php echo $_product->getSmallImageUrl() ?>" width="80" height="77" alt="<?php echo $this->htmlEscape($_product->getName()) ?>" />
            </a>
        </div>
            <p align="center"><a class="product-name" href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_product->getName()) ?>)"><?php echo $this->htmlEscape($_product->getName()) ?></a></p>
            <div align="center">
			<?php echo $this->helper('review/product')->getSummaryHtml($_product, 'short') ?>
            <?php echo $this->helper('catalog/product')->getPriceHtml($_product) ?>
            <?php if($_product->isSaleable()): ?>
            <button class="form-button" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><?php echo $this->__('Add to Cart') ?></span></button>
            <?php else: ?>
			</div>
            <div align="center" class="out-of-stock"><?php echo $this->__('Out of stock') ?></div>
            <?php endif; ?>
            <div align="center" class="clear"></div>
            <p align="center" class="add-to">
                <?php if ($this->helper('wishlist')->isAllow()) : ?>
                <a href="<?php echo $this->getAddToWishlistUrl($_product) ?>" class="link-cart"><?php echo $this->__('Add to Wishlist') ?></a>
                <?php endif; ?>
                <?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?><br />
                <a href="<?php echo $_compareUrl ?>"><?php echo $this->__('Add to Compare') ?></a>
                <?php endif; ?>
            </p>
    </tr>
<?php $i++; endforeach; ?>
<?php for($i;$i%2!=0;$i++): ?>
        <td>&nbsp;</td>
    <?php endfor ?>
    </tr>
</table></div>
<?php endif; ?>