[jQuery] Cycle Plugin and IE/FF

[jQuery] Cycle Plugin and IE/FF


Hey,
I am in the process of locally redesigning my blog and I wan to use
the cycle plugin to show my last 6 blogposts. I ran into some problems
doing this, though. The plugin works in Firefox, but it just won't
stop loading and in IE7 the cycle is not processed at all.
I have read through a lot of posts here and realized that most of the
time the culprit seems to be a comma. I did check that and couldn't
find anything wrong. Here's the code I use in he header:
<script type="text/javascript">
    jQuery( function( $ ) {
        $('#recent-posts').after('<div id="nav" class="nav">').cycle({
        fx: 'fade',
        speed: 1500,
        timeout: 6000,
        pager: '#nav',
        pagerEvent: 'mouseover',
        pause: 1,
        cleartype: 1
     });
    });
</script>
Any feedback would be greatly appreciated.
Bo