I'm looking to get some help on using the cycle library for jQuery. I'm in the beginner demos, and I got the absolute first one completed. This is the second one on the page.
<script src="jquery-1.2.6.min.js" type="text/javascript"></script>
<script src="jquery.cycle.all.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.pics').cycle({
fx: 'scrollDown',
speed: 300,
timeout: 2000
});
</script>
My CSS is identical to the one on the page, that's why I put .pics in the quotes.