jquery cycle with carousel

jquery cycle with carousel

Hello, I'm having some problems with jquery cycle pagerAnchorBuilder, when I initiate the carousel functionality the cycle pagerAnchorBuilder is not working, demo here: www.siljamagg.com/slide-demo/

the code looks like this.
  1.        $('#slideshow').after('<div id="carousel-test"><ul>').cycle({
  2.            fx:     'scrollHorz',
  3.            speed:  400,
  4.            prev:   '#prev',
  5.            next:   '#next',
  6.            after: onAfter,
  7.            timeout: 0,
  8.            pager:  '#carousel-test ul:first',
  9.            pagerAnchorBuilder: function(idx, slide) {
  10.                  var img = $(slide).children().eq(0).attr("src");
  11.                  return '<li><a href="#" class="nohash"><img src="' + img + '" height="90" /></a></li>';
  12.              }
  13.        });      
  14.     
  15.        $('#carousel-test').scrollingCarousel({
  16.                scrollSpeed: 'slow',
  17.                looped: false
  18.         });
got any tips for me?

thanks.
ingvi