add a repeatable block

Permalink
Hello guys,

i'm looking for a function which i can add a new box with a new background image on click on "add to xxx" like a newsmodule.

My code:

<?php
               $area = new Area('S1');        
               if (($area->getTotalBlocksInArea($c) > 0) || ($c->isEditMode())) { ?>
                   <div class="news_top_block_left">
                        <?php $area->display($c); ?>
                  </div>
               <?php } ?>  
            <?php
               $area = new Area('S2');        
               if (($area->getTotalBlocksInArea($c) > 0) || ($c->isEditMode())) { ?>
                   <div class="news_top_block_right">
                        <?php $area->display($c); ?>
                  </div>
               <?php } ?>



I want that the box repeat WITH the image below the other box.

i need an answer immediately...

Thanks

regards

naggison