Fetching Full Size Images

Hi,

I'd like to have the show.php file fetch a full sized image on my item display page. Right now, working with the Berlin Theme in Omeka 2.1.2, the default is to fetch a thumbnail:

<div id="item-images">
         <?php echo files_for_item(); ?>
    </div>

Thanks!
Karen

This should do the trick:

<?php echo files_for_item(array('imageSize'=>'fullsize')); ?>