>
> renderContentOn: html
>        html div
>                id: #cycler;
>                script: ((html jQuery: #cycler) cycle fx: 'fade'; timeout: self timeout; delay: self delay; speed: self speed; pager: '#cyclerNav') greaseString;
>                with: [
>                        self sourceChildren do: [:each |
>                                html div class: 'cyclerItem'; with: [html rendererInstance visit: each document] ] ].
>

Unrelated to your problem, but I don't think you need the call to #greaseString at the end of your script: line.

Nick