One of the toughest parts about Magento is understanding the whole. Invest some time in understanding the templating and design overrides.
Practicaly speaking:
- Create a new theme directory in your magento design director instance
- COPY the list.phtml into the same directory in that new design directory
- Make changes to your copy
- Specify the new theme directory in the design area of your config as an override
That's what you need to do in a nut shell. Dont' just start changing the list.phtml in the Magento core...if you do, you'll regret it later :)
--- Later Addition ---
To achieve the layout, I would recommend putting in some sort of a "counter" that inserted some additional css class on the first and (in the case of your example) tenth item.
You can also edit the layout xml files to make your list display 10 at a time (if not through the config directly
Edit:
<?php // Grid Mode ?>
<?php $_collectionSize = $_productCollection->count() ?>
<?php $_columnCount = $this->getColumnCount(); ?>
<?php $lastItem = 10; // added this line ?>
<?php $i=0; foreach ($_productCollection as $_product): ?>
<?php if ($i++%$_columnCount==0): ?>
<ul class="products-grid">
<?php endif ?>
<li class="item<?php if(($i-1)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>
<?php if($i==0): ?> firstItem<?php elseif($i==($lastItem-1):?> lastItem<?php endif; // added this line ?>">
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($this->getImageLabel($_product, 'small_image')) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="<?php echo $this->htmlEscape($this->getImageLabel($_product, 'small_image')) ?>" /></a>