You need to add the following line
$_productCollection->clear()
->setPageSize(100)
->load();
your code looks like this
<?php
$_productCollection=$this->getLoadedProductCollection();
$_productCollection->clear()
->setPageSize(100)
->load();
$_helper = $this->helper('catalog/output');
?>
