Cycle() problem - probably easy

I have a cycle function that will only ‘fade’. If I put any other effect in the code, nothing happens. I do know that fade is the default, so I assume that is why it is working, but nothing else.

So this code works. when I change ‘fade’ to ‘scrollLeft’ or ‘shuffle’ it only shows the first pic.

<script type=“text/javascript”>
$(document).ready(function() {
$(‘#mTopPhotos’).cycle({
fx: ‘fade’,
next: ‘#mNextArrow’,
prev: ‘#mBackArrow
});
});
</script>
<div id=“mTopPhotos”>
<a href=“http://example1.com”><img…></a>
<a href=“http://example2.com”><img…></a>
<a href=“http://example3.com”><img…></a>
<a href=“http://example4.com”><img…></a>

</div>

Thanks

Are you using the file jquery.cycle.all.min.js as there are some files that only include the fade transition.

nope. just jquery.cycle.js

See I knew it would be easy. I’m so green, I dont even know how to ask something that would be hard :wink:

Thanks