function runTest() {
        var ul = $$("#horizontal_carousel .container ul").first();
        // Fill carousel
        var html = $R(0,9).inject("", function(html, index)  {
          return html + '<li><img alt="Image'+ index + '" width="144" height="94" src="/img/image' + index + '.jpg"/>';
        });
        ul.update(html);

        new UI.Carousel("horizontal_carousel");
      }
      Event.observe(window, "load", runTest);

