I have a sample site here that uses a content slider on the home page. My client is requesting that the slides continue scrolling through instead of jumping back to the first slide after they have all played through. The slider is using jQuery.easing['jswing'] = jQuery.easing['swing']; and the function easeOutQuad. I've tried other functions but I can't get it to loop instead of snapping back to the first slide. Any advice would be greatly appreciated!
Below is the jquery code from the template header:
<script type="text/javascript" charset="utf-8">
var theme_template_dir = jQuery("meta[name=theme_template_dir]").attr('content');
$(document).ready(function() {
$('div.photo a').fancyZoom({directory: theme_template_dir + '/images/zoom', scaleImg: true, closeOnClick: true});
var buttons = { previous:$('#lofslidecontent45 .lof-previous') ,
next:$('#lofslidecontent45 .lof-next') };
$obj = $('#lofslidecontent45').lofJSidernews( { interval: 5000,
easing: 'easeInOutQuad',
duration: 1200,
auto : true,
mainWidth:960,
buttons: buttons} );
});
Cufon.replace('h1,h2,h3,h4,h5,#menu,#copy,.blog-date');
</script>