jCarouselLite

Permalink
Hey, does anyone use the script jCarouselLite in C5?
I made a site with the carousel, but I have a problem with editing page.

My code looks like this:
<div id="content" class="jCarouselLite">
      <ul>
         <li><img src="foto_01.jpg" /></li>
         <li><img src="foto_02.jpg" /></li>
         <li><img src="foto_03.jpg" /></li>
         <li><img src="foto_04.jpg" /></li>
      </ul>
   </div>

And now another edit area on the site are ok and I can edit page.

When I insert the php code instead ul,
<div id="content" class="jCarouselLite">
   <?php
            $content = new Area('content');
            $content->setBlockLimit(1);
             $content->display($c);      
      ?>  
</div>


I can't edit page. Editable area are not active.
Do you know what is a problem?

cssninja