There could also be other problems. But on the arms_revised/ page there's a typo in the script call:
Code:
<script>$(document).ready(function(){
$('#slideshow').cycle({
fx: 'wipe',
timeout: 5000, // milliseconds between slide transitions (0 to disable auto advance)
speed: 1000, // speed of the transition (any valid fx speed value)
pager: '.pagination', // selector for element to use as pager container
activePagerClass: 'active' // class name used for the active pager link});
});
</script>
should be:
Code:
<script>$(document).ready(function(){
$('#slideshow').cycle({
fx: 'wipe',
timeout: 5000, // milliseconds between slide transitions (0 to disable auto advance)
speed: 1000, // speed of the transition (any valid fx speed value)
pager: '.pagination', // selector for element to use as pager container
activePagerClass: 'active' // class name used for the active pager link
});
});
</script>
Bookmarks